aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/google
diff options
context:
space:
mode:
authorchok <chok@google.com>2017-06-16 19:46:09 -0700
committerAng Li <angli@google.com>2017-06-16 19:46:09 -0700
commit1627da09afbdb3d275728cd13a7e29358e47a5f3 (patch)
tree1ea8b9a1dd7aaec251e91c08b2ba586182dc4820 /src/main/java/com/google
parent947441aeb9be8d049c220b1c02956cac0da5f829 (diff)
downloadmobly-bundled-snippets-1627da09afbdb3d275728cd13a7e29358e47a5f3.tar.gz
Added support for Unknown BT device type (#63)
Diffstat (limited to 'src/main/java/com/google')
-rw-r--r--src/main/java/com/google/android/mobly/snippet/bundled/utils/MbsEnums.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/com/google/android/mobly/snippet/bundled/utils/MbsEnums.java b/src/main/java/com/google/android/mobly/snippet/bundled/utils/MbsEnums.java
index 33c425c..08163b4 100644
--- a/src/main/java/com/google/android/mobly/snippet/bundled/utils/MbsEnums.java
+++ b/src/main/java/com/google/android/mobly/snippet/bundled/utils/MbsEnums.java
@@ -32,6 +32,7 @@ public class MbsEnums {
return builder.add("DEVICE_TYPE_CLASSIC", BluetoothDevice.DEVICE_TYPE_CLASSIC)
.add("DEVICE_TYPE_LE", BluetoothDevice.DEVICE_TYPE_LE)
.add("DEVICE_TYPE_DUAL", BluetoothDevice.DEVICE_TYPE_DUAL)
+ .add("DEVICE_TYPE_UNKNOWN", BluetoothDevice.DEVICE_TYPE_UNKNOWN)
.build();
}