Can I make an automatic response to bluetooth device discoverable action ? Maybe with reflection object ?
I mean i don't want to start the activity for this intent but i need to send an automatic "yes" response.
How can i do that ?
B4X:
Dim i As Intent
i.Initialize("android.bluetooth.adapter.action.REQUEST_DISCOVERABLE", "")
i.PutExtra("android.bluetooth.adapter.extra.DISCOVERABLE_DURATION", 300)
How can i do that ?