android - borrar - ''La aplicación está escaneando con demasiada frecuencia'' con ScanSettings.SCAN_MODE_OPPORTUNISTIC
android 7 reset bluetooth (0)
Me di cuenta de un problema en Samsung S8, Android 7.0 ( upd. Esto también ocurre en Android 7.0: Samsung S7, Nexus 5x ) que dice (después de algunas pruebas) que la aplicación está escaneando con demasiada frecuencia:
08-14 12:44:20.693 25329-25329/com.my.app D/BluetoothAdapter: startLeScan(): null
08-14 12:44:20.695 25329-25329/com.my.app D/BluetoothAdapter: STATE_ON
08-14 12:44:20.696 25329-25329/com.my.app D/BluetoothAdapter: STATE_ON
08-14 12:44:20.698 25329-25329/com.my.app D/BluetoothLeScanner: Start Scan
08-14 12:44:20.699 25329-25329/com.my.app D/BluetoothAdapter: STATE_ON
08-14 12:44:20.700 25329-25329/com.my.app D/BluetoothAdapter: STATE_ON
08-14 12:44:20.700 25329-25329/com.my.app D/BluetoothAdapter: STATE_ON
08-14 12:44:20.701 25329-25329/com.my.app D/BluetoothAdapter: STATE_ON
08-14 12:44:20.703 4079-4093/? D/BtGatt.GattService: registerClient() - UUID=dbaafee1-caf1-4482-9025-b712f000eeab
08-14 12:44:20.807 4079-4204/? D/BtGatt.GattService: onClientRegistered() - UUID=dbaafee1-caf1-4482-9025-b712f000eeab, clientIf=5, status=0
08-14 12:44:20.808 25329-25342/com.my.app D/BluetoothLeScanner: onClientRegistered() - status=0 clientIf=5 mClientIf=0
08-14 12:44:20.809 4079-7185/? D/BtGatt.GattService: start scan with filters
08-14 12:44:20.811 4079-7185/? D/BtGatt.GattService: getScanSettings
08-14 12:44:20.812 4079-7185/? D/BtGatt.GattService: Is it foreground application = true
08-14 12:44:20.812 4079-7185/? D/BtGatt.GattService: not a background application
08-14 12:44:20.817 4079-7185/? E/BtGatt.GattService: App ''com.my.app'' is scanning too frequently
El problema definitivamente radica en esos 6 resultados de llamada STATE_ON, es la parte del cambio de comportamiento BLE no documentado, mencionado por primera vez en las notas de la versión DP4:
Hemos cambiado el comportamiento del escaneo BLE comenzando en DP4. Evitaremos que las aplicaciones inicien y detengan escaneos más de 5 veces en 30 segundos. Para escaneos de larga ejecución, los convertiremos en escaneos oportunistas.
Lo que no entiendo son los 6 escaneos en menos de 30 segundos, incluso si configuro: ScanSettings.setScanMode(ScanSettings.SCAN_MODE_OPPORTUNISTIC)
.
El código es:
List<ScanFilter> filters = new ArrayList<>();
ScanSettings scanSettings = new ScanSettings.Builder()
.setScanMode(ScanSettings.SCAN_MODE_OPPORTUNISTIC)
.build();
bluetoothAdapter.getBluetoothLeScanner().startScan(filters, scanSettings, recoderScanCallback);
//events from the log happen before this log is printed
Log.i("test", " started!");
return recoderScanCallback.scanResultObservable().map((ScanResult record) -> {
//never gets here
Log.i("test", " result!");
});
RecorderScanCallback
se deriva de ScanCallback
. No podemos usar RxAndroidBle#rxBleClient.scanBleSettings
(ScanSettings) porque nuestro código está a punto de congelarse y usamos la versión 1.1.0 de la lib.
¿Por qué ScanSettings.setScanMode
no altera los resultados de la búsqueda?