简体   繁体   中英

App not receiving boot completed intent in some devices

i created an app that always start a service once the device has completed booting. This is the Manifest code..

<receiver>
 android:name="StartMyServiceAtBootReceiver"
 android:directBootAware ="true"
 android:enabled="true"
 android:exported="true">

    <intent-filter>

        <action android:name="android.intent.action.BOOT_COMPLETED" />
        <action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
        <action android:name="android.intent.action.REBOOT"/>
        <action android:name="android.intent.action.QUICKBOOT_POWERON" />

    </intent-filter>

</receiver>

The service always start in some devices once boot is completed but in my own device which is running android 7.0, the boot completed service doesn't start unless i convert the app to system app using root access. Can someone tell me how to make the app to start the service on boot completed without converting it to a system app?

First of All

receiver android:name="StartMyServiceAtBootReceiver"

Your path to Receiver should written over here for example:

<receiver android:name=".receiver.BootReceiver">

first dot suggest your path till root of the package.

Create a BroadcastReceiver and register it to receive ACTION_BOOT_COMPLETED . You also need RECEIVE_BOOT_COMPLETED permission.

Read: Listening For and Broadcasting Global Messages , and Setting Alarms

Try into manifest

 <receiver
        android:name=".AutoStart"
        android:enabled="true"
        android:exported="true" >
        <intent-filter android:priority="500" >
            <action android:name="android.intent.action.BOOT_COMPLETED" />
            <action android:name="android.intent.action.QUICKBOOT_POWERON" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
</receiver>

Make sure also to include the completed boot permission.

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

Also read this answer carefully

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM