が、ここではアップグレードできない人のためのソリューションです参照してください。
- 設定してくださいあなたはこれ以上の範囲覚醒放送ではなく、普通の放送
- を作る
- を26.0.1+するためのツールを構築JobServiceIntentを拡張し、それにタスクをスケジュールするクラスを作成します。
ジョブサービスでは、Oreoのバックグラウンドで作業することが可能です。ここで
はJobServiceIntentクラスのサンプル
package com.voxelbusters.nativeplugins.features.notification.core;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.JobIntentService;
import com.google.android.gms.gcm.GoogleCloudMessaging;
import com.voxelbusters.nativeplugins.defines.CommonDefines;
import com.voxelbusters.nativeplugins.utilities.Debug;
import com.voxelbusters.nativeplugins.utilities.JSONUtility;
import org.json.JSONObject;
/**
* Created by ayyappa on 09/02/18.
*/
public class NotificationJobService extends JobIntentService
{
/**
* Unique job ID for this service.
*/
static final int JOB_ID = 1000;
/**
* Convenience method for enqueuing work in to this service.
*/
public static void enqueueWork(Context context, Intent work) {
enqueueWork(context, NotificationJobService.class, JOB_ID, work);
}
@Override
protected void onHandleWork(Intent intent)
{
Bundle extras = intent.getExtras();
GoogleCloudMessaging service = GoogleCloudMessaging.getInstance(this);
String messageType = service.getMessageType(intent);
Debug.log(CommonDefines.NOTIFICATION_TAG, "GCMIntentService received message type : " + messageType);
if (!extras.isEmpty())
{
if (GoogleCloudMessaging.MESSAGE_TYPE_MESSAGE.equals(messageType))
{
// Post notification of the received message (extras).
}
}
}
@Override
public void onDestroy()
{
super.onDestroy();
}
}
今すぐ以下のように放送を受信するにenqueWorkを呼び出すです。
package com.voxelbusters.nativeplugins.features.notification.serviceprovider.gcm;
import android.content.BroadcastReceiver;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import com.voxelbusters.nativeplugins.features.notification.core.NotificationDefines;
import com.voxelbusters.nativeplugins.features.notification.core.NotificationJobService;
public class GCMBroadcastReceiver extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent)
{
if (!NotificationDefines.usesExtenralRemoteNotificationService(context))
{
// Explicitly specify that GCMIntentService will handle the intent.
ComponentName comp = new ComponentName(context.getPackageName(), GCMIntentService.class.getName());
intent.setComponent(comp);
NotificationJobService.enqueueWork(context, intent);
}
}
}
希望します。
GCM jarは非常に古く、推奨されていません。今すぐfirebaseでFCMを使用する必要があります。 jarファイルにアンドロイドの新しい背景の制限がありません – tyczj
@ramyaこの問題を修正しましたか?私は同じものに直面しています –
@ Passionate.C:問題を修正しましたか? – Debugger