-
Notifications
You must be signed in to change notification settings - Fork 350
Restart service on device reboot
mehdi sohrabi edited this page Apr 26, 2020
·
1 revision
- Add the boot receive permission to
AndroidManifest.xml
:
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
- Register
BootBroadcastReceiver
insideapplication
tag:
<application
...
...
...
<receiver android:name="rekab.app.background_locator.BootBroadcastReceiver"
android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
...
...
...
</application>