have an Android app that uses the RECEIVE_BOOT_COMPLETED. According to the docs, I should not allow installing/moving this app to external storage. Users, however, do not understand this (probably due to very little internal storage on some devices) – and demand the option to install on external storage (via low-star ratings).
So i also have a same BroadcastReceiver listening for EXTERNAL_APPLICATIONS_AVAILABLE. My question is can i use both with same BroadcastReceiver?
Sure. Have both actions in the
<intent-filter>. InonReceive(), check the action of the incomingIntentto identify which broadcast you need to respond to.