NunciosChums
NunciosChums
+1 on Nexus 7 1st Gen, Android 4.4
I have same error. I'm use SPP + BluetoothProfile.HEADSET. when call `rxBluetooth.connectAsClient(device, UUID_SPP)` => `getBluetoothService() called with no BluetoothManagerCallback` but add `.retryWhen { it.delay(500, TimeUnit.MILLISECONDS) }`, always successfully connected after...
Use 'RxJavaPlugins.setErrorHandler()` ```kotlin fun connect(){ rxBluetooth.observeConnectionState() .filter { it.state == BluetoothAdapter.STATE_CONNECTED } .subscribe( { onConnected() }, { it.printStackTrace() }) rxBluetooth.observeConnectionState() .filter { it.state == BluetoothAdapter.STATE_DISCONNECTED } .subscribe( { onDisconnected() },...
`import SQLite3` -> `import SQLite` > Hi, > I'm same error. > See the picture. > Agostinho > >
I hava same problem. my solutuion is change DNS on my WiFi router. when DNS is `1.1.1.1` works fine, but `168.126.63.1(Korea - KT, default)` is not work. --- sorry. same...
@ronnierios me. 1. I stopped use this library then direct call to telegram api url by rest-client 2. add `timeout=60` parameter to telegram api ```ruby url = "#{api_url}/getUpdates?offset=#{@offset.next}&timeout=60" response =...