Skip to content

Commit 2b0f03a

Browse files
committedAug 6, 2017
check how many non-emulator devices are available
1 parent d697d75 commit 2b0f03a

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed
 

‎src/processing/mode/android/AndroidEditor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public void run() {
107107
if (androidMode == null || androidMode.getSDK() == null) return;
108108

109109
if (appComponent == AndroidBuild.WATCHFACE) {
110-
Devices.enableBlueToothDebugging();
110+
Devices.enableBluetoothDebugging();
111111
}
112112

113113
final Devices devices = Devices.getInstance();

‎src/processing/mode/android/Devices.java

+14-3
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,22 @@ public static void killAdbServer() {
8080
}
8181
}
8282

83-
public static void enableBlueToothDebugging() {
83+
public static void enableBluetoothDebugging() {
84+
final Devices devices = Devices.getInstance();
85+
java.util.List<Device> deviceList = devices.findMultiple(false);
86+
87+
if (deviceList.size() != 1) {
88+
// There is more than one non-emulator device connected to the computer,
89+
// but don't know which one the watch could be paired to... or the watch
90+
// is already paired to the phone, in which case we don't need to keep
91+
// trying to connect.
92+
return;
93+
}
94+
Device device = deviceList.get(0);
8495
try {
85-
// Enable debugging over bluetooth
96+
// Try Enable debugging over bluetooth
8697
// http://developer.android.com/training/wearables/apps/bt-debugging.html
87-
AndroidSDK.runADB("forward", "tcp:" + BT_DEBUG_PORT, "localabstract:/adb-hub");
98+
AndroidSDK.runADB("-s", device.getId(), "forward", "tcp:" + BT_DEBUG_PORT, "localabstract:/adb-hub");
8899
AndroidSDK.runADB("connect", "127.0.0.1:" + BT_DEBUG_PORT);
89100
} catch (final Exception e) {
90101
e.printStackTrace();

0 commit comments

Comments
 (0)