There is some way to prioritize the services that are loaded when you start the android.
I have app that has a service to launch a radio through an intent and it takes a long time (2-3minutes)
i use that in manifest to intent:
thanks
I have app that has a service to launch a radio through an intent and it takes a long time (2-3minutes)
i use that in manifest to intent:
B4X:
AddReceiverText(a2dp,
<intent-filter android:priority="2147483647">
<action android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
<action android:name="android.bluetooth.headset.profile.action.CONNECTION_STATE_CHANGED" />
</intent-filter>
)
thanks