Skip to content

Commit 2d71887

Browse files
author
Douglas Nassif Roma Junior
committed
- Fixing issue with run in main thread
- Fixing bug on try to connect to BLE withou TRANSPORT_LE type
1 parent 270d1fa commit 2d71887

File tree

2 files changed

+68
-6
lines changed
  • BluetoothClassicLibrary/src/main/java/com/github/douglasjunior/bluetoothclassiclibrary
  • BluetoothLowEnergyLibrary/src/main/java/com/github/douglasjunior/bluetoothlowenergylibrary

2 files changed

+68
-6
lines changed

BluetoothClassicLibrary/src/main/java/com/github/douglasjunior/bluetoothclassiclibrary/BluetoothService.java

+36-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import android.bluetooth.BluetoothDevice;
44
import android.content.Context;
5+
import android.os.Build;
56
import android.os.Handler;
67
import android.os.Looper;
78
import android.util.Log;
@@ -92,20 +93,26 @@ public void run() {
9293
}
9394

9495
protected void runOnMainThread(Runnable runnable, long delayMillis) {
95-
if (!mConfig.callListenersInMainThread || Looper.myLooper() == Looper.getMainLooper()) {
96-
runnable.run();
97-
} else {
96+
if ((mConfig.callListenersInMainThread && Looper.myLooper() != Looper.getMainLooper()) || delayMillis > 0) {
9897
if (delayMillis > 0)
9998
handler.postDelayed(runnable, delayMillis);
10099
else
101100
handler.post(runnable);
101+
} else {
102+
runnable.run();
102103
}
103104
}
104105

105106
protected void runOnMainThread(Runnable runnable) {
106107
runOnMainThread(runnable, 0);
107108
}
108109

110+
protected void removeRunnableFromHandler(Runnable runnable) {
111+
if (handler != null) {
112+
handler.removeCallbacks(runnable);
113+
}
114+
}
115+
109116
public synchronized BluetoothStatus getStatus() {
110117
return mStatus;
111118
}
@@ -147,6 +154,32 @@ public static class BluetoothConfiguration {
147154
public UUID uuid;
148155
public UUID uuidService;
149156
public UUID uuidCharacteristic;
157+
/**
158+
* @see BluetoothDevice#TRANSPORT_AUTO
159+
* @see BluetoothDevice#TRANSPORT_BREDR
160+
* @see BluetoothDevice#TRANSPORT_LE
161+
*/
162+
public int transport;
150163
public boolean callListenersInMainThread = true;
164+
165+
public BluetoothConfiguration() {
166+
setDefaultTransport();
167+
}
168+
169+
private void setDefaultTransport() {
170+
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
171+
transport = BluetoothDevice.TRANSPORT_LE;
172+
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
173+
// From Android LOLLIPOP (21) the transport types exists, but them are hide for use,
174+
// so is needed to use relfection to get the value
175+
try {
176+
transport = BluetoothDevice.class.getDeclaredField("TRANSPORT_LE").getInt(null);
177+
} catch (Exception ex) {
178+
Log.d(TAG, "Error on get BluetoothDevice.TRANSPORT_LE with reflection.", ex);
179+
}
180+
} else {
181+
transport = -1;
182+
}
183+
}
151184
}
152185
}

BluetoothLowEnergyLibrary/src/main/java/com/github/douglasjunior/bluetoothlowenergylibrary/BluetoothLeService.java

+32-3
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@
1111
import android.bluetooth.BluetoothManager;
1212
import android.bluetooth.BluetoothProfile;
1313
import android.content.Context;
14+
import android.os.Build;
1415
import android.support.annotation.RequiresPermission;
1516
import android.util.Log;
1617

1718
import com.github.douglasjunior.bluetoothclassiclibrary.BluetoothService;
1819
import com.github.douglasjunior.bluetoothclassiclibrary.BluetoothStatus;
1920

21+
import java.lang.reflect.Method;
2022
import java.nio.ByteBuffer;
2123
import java.nio.ByteOrder;
2224
import java.util.ArrayList;
@@ -231,8 +233,35 @@ public void connect(BluetoothDevice bluetoothDevice) {
231233
if (bluetoothGatt != null) {
232234
bluetoothGatt.disconnect();
233235
}
236+
234237
updateState(BluetoothStatus.CONNECTING);
235-
bluetoothGatt = bluetoothDevice.connectGatt(mConfig.context, false, btleGattCallback);
238+
239+
/*
240+
About this issue:
241+
https://code.google.com/p/android/issues/detail?id=92949
242+
http://stackoverflow.com/q/27633680/2826279
243+
*/
244+
245+
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
246+
// If android verion is greather or equal to Android M (23), then call the connectGatt with TRANSPORT_LE.
247+
bluetoothGatt = bluetoothDevice.connectGatt(mConfig.context, false, btleGattCallback, mConfig.transport);
248+
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
249+
// From Android LOLLIPOP (21) the transport types exists, but them are hide for use,
250+
// so is needed to use relfection to get the value
251+
try {
252+
Method connectGattMethod = bluetoothDevice.getClass().getDeclaredMethod("connectGatt", Context.class, boolean.class, BluetoothGattCallback.class, int.class);
253+
connectGattMethod.setAccessible(true);
254+
bluetoothGatt = (BluetoothGatt) connectGattMethod.invoke(bluetoothDevice, mConfig.context, false, btleGattCallback, mConfig.transport);
255+
} catch (Exception ex) {
256+
Log.d(TAG, "Error on call BluetoothDevice.connectGatt with reflection.", ex);
257+
}
258+
}
259+
260+
// If any try is fail, then call the connectGatt without transport
261+
if (bluetoothGatt == null) {
262+
bluetoothGatt = bluetoothDevice.connectGatt(mConfig.context, false, btleGattCallback);
263+
}
264+
236265
}
237266
}
238267

@@ -338,9 +367,9 @@ private List<UUID> parseUUIDs(final byte[] advertisedData) {
338367
@RequiresPermission(Manifest.permission.BLUETOOTH_ADMIN)
339368
@Override
340369
public void stopScan() {
341-
runOnMainThread(mStopScanRunnable);
370+
removeRunnableFromHandler(mStopScanRunnable);
342371
btAdapter.stopLeScan(mLeScanCallback);
343-
372+
344373
if (onScanCallback != null)
345374
runOnMainThread(new Runnable() {
346375
@Override

0 commit comments

Comments
 (0)