简体   繁体   中英

Android: Boot Broadcast not working after Reboot

I have an app that uses a broadcast service to continue my pending intent after it reboots, but its not working as its supposed to. After I reboot my phone i get pop-up notification saying MyAppsName has stopped working . And the log I made for it does not appear.

manifest.xml:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.idkbro.pashchallenge">

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

<application

    android:allowBackup="true"
    android:name=".BaseApplication"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>


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



    <receiver android:name=".AlertReceiver">
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
            <category android:name="android.intent.category.HOME" />
        </intent-filter>
    </receiver>

    <receiver
        android:name=".BootReceiver"
        android:enabled="true"
        android:permission="android.permission.RECEIVE_BOOT_COMPLETED" >
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </receiver>

    <service
        android:name=".NotificationService"
        android:exported="true"></service>

</application>

The BootReceiver:

@Override
public void onReceive(Context context, Intent intent) {

    Log.i("Xu", "Boot receiver is working");
}

Just add this in receiver class:

if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")){
   Log.i("Xu", "Boot receiver is working");
}

And remove permission and category intent filter from manifest reciver tag like:

<receiver
        android:name=".BootReceiver"
        android:enabled="true">
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />

        </intent-filter>
    </receiver>

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