Android.permission.receive_boot_completed Does Not Launch Activity At Boot
I have a BootUpReceiver class which I'm attempting to use with RECEIVE_BOOT_COMPLETED to launch an Activity when the device boots. The problem is - it does not seem to do so when I
Solution 1:
Remove android:permission="android.permission.RECEIVE_BOOT_COMPLETED"
and try again.
Beyond that, there is no requirement that your activity appear in front of any other activity that might be started around the same time, such as the home screen.
Post a Comment for "Android.permission.receive_boot_completed Does Not Launch Activity At Boot"