Android Question Detect bluetooth device paring API 26

Emme Developer

Well-Known Member
Licensed User
Longtime User
Hi to all!
As wrote in Android documentation: "Apps that target Android 8.0 or higher can no longer register broadcast receivers for implicit broadcasts in their manifest. An implicit broadcast is a broadcast that does not target that app specifically", applications can't now listen to new paired device (or unpaired). Is possibile to achieve this thing (like we are using inplicit intent) without using job scheduler? (Job scheduler as i understood can scan devices every 15m)

Thanks to all
 

DonManfred

Expert
Licensed User
Longtime User
Upvote 0

Emme Developer

Well-Known Member
Licensed User
Longtime User
Why they can´t? Do you get any error?
Intent is not recognized by application

BluetoothAdmin will work. If you want to discover devices while the app is in the background then you need to use a foreground service.

Example: https://www.b4x.com/android/forum/threads/background-location-tracking.99873/
I Need to recognize It in background, but this mean that i need to show a persistent notification (am i wrong?) and this is not wonderful for a good UI in my app
 
Upvote 0

Tempomaster

Active Member
Licensed User
Longtime User
Hello,

I have recently received more and more reports that the startup with Bluetoth on my app Tempomaster no longer works. Since I do not use this autostart myself, I checked it. On my smartphone with Android 8.0 also happened nothing more. I bought the phone with Android 7, there was everything right with the startup. The updates were done automatically.

I use the autostart from the following article:

https://www.b4x.com/android/forum/t...-are-connected-to-bluetooth.16555/#post-96237

I found the solution of the problem rather by accident. I tried this example and put it into my project:

https://www.b4x.com/android/forum/t...matic-bluetooth-device-bonding.25675/#content

Suddenly, the service S2 logged back with log messages. This one was not started before. I had adopted a manifest entry of the new example in my project:

B4X:
AddPermission (android.permission.BLUETOOTH)
AddPermission (android.permission.BLUETOOTH_ADMIN)

The second line is the added entry. That was the whole art. The Bluetoth autostart now works as usual.

Best regards,
Gunnar
 
Last edited:
Upvote 0
Top