web-dev-qa-db-ja.com

バックグラウンド実行は許可されていません。 Android O pendingintent

通知を開始するpendingintentをスケジュールするサービスがあります。ただし、Android Oでこのエラーが発生しています。調査を行ったところ、context.registerReceiver、しかしそれは問題を解決していないようです。

エラー:

W/BroadcastQueue: Background execution not allowed: receiving Intent { act=Android.intent.action.PACKAGE_ADDED dat=package:my.great.package flg=0x4000010 (has extras) } to com.google.Android.googlequicksearchbox/com.google.Android.apps.gsa.googlequicksearchbox.GelStubAppWatcher

`` `

私の保留中の意図:

Intent myNotification = new Intent("services.notifications.Notification");
PendingIntent pendingIntent = PendingIntent.getBroadcast(this, (int) (Math.random() * Integer.MAX_VALUE), myNotification, PendingIntent.FLAG_UPDATE_CURRENT);
AlarmManager alarmManager = (AlarmManager) (this.getSystemService(Context.ALARM_SERVICE));
alarmManager.setExact(AlarmManager.RTC_WAKEUP, day.getTimeInMillis(), pendingIntent);

私の通知:

public class Notification extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        context.registerReceiver(this, new IntentFilter());

        try {
            WakeLock wakeLock = ((PowerManager) context.getSystemService(Context.POWER_SERVICE)).newWakeLock(1, "NotificationWakeLock");
            wakeLock.acquire(10000);

            try {
                scheduleNotification(context, intent);
            } finally {
                wakeLock.release();
            }
        } catch (NullPointerException e) {}
    }
}
10
Jason

フォアグラウンドサービスを追加して解決しました。

Intent test = new Intent(this, NotificationService.class);
startForegroundService(test);

これにより、アプリがフォアグラウンドで実行されていることを示す通知が表示されます。

そして、これを私のサービスのoncreateに追加することにより:

startForeground(100, new NotificationCompat.Builder(this).build());
0
Jason