Samsung _S8/S5/J2/Note3
_は_Firebase Push Notification
_を正常に取得しています。アプリはバックグラウンドまたはフォアグラウンドで強制終了されます。
ただし、Infinix Note 5 (Android One- Oreo)
およびOppo F9(Oreo)
は、アプリが強制終了された場合にプッシュ通知を取得しません。アプリがバックグラウンドまたはフォアグラウンドにある場合は正常に動作します。
this および this という多くの記事を読みましたが、中国の携帯電話にはこの問題があり、ユーザー側からこれらの通知を機能させるための回避策がいくつかあります電話。
しかし、すべてのAndroidデバイスで通知を機能させるために開発側から何かが可能かどうかを知りたいです。
私はAPI 27をターゲットにしていますが、これは私のコードです
_public class FirebaseMessagingService extends com.google.firebase.messaging.FirebaseMessagingService {
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
super.onMessageReceived(remoteMessage);
String from = remoteMessage.getFrom();
Map data = remoteMessage.getData();
JSONObject jsonObject = new JSONObject();
Set<String> keys = remoteMessage.getData().keySet();
for (String key : keys) {
try {
jsonObject.put(key, remoteMessage.getData().get(key));
} catch (JSONException e) {
e.printStackTrace();
}
}
message= jsonObject.getString("message");
sendNotification(message, urlToOpen);
private void sendNotification(final String msg, final String urlToOpen) {
Intent intent = new Intent(this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent,
PendingIntent.FLAG_ONE_SHOT);
String channelId = getString(R.string.notification_channel_general);
Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this, channelId)
.setSmallIcon(R.drawable.notification_icon)
.setContentTitle("App Name")
.setContentText(msg)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setPriority(Notification.PRIORITY_MAX)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel = new NotificationChannel(channelId,
"App Channel",
NotificationManager.IMPORTANCE_HIGH);
notificationManager.createNotificationChannel(channel);
}
notificationManager.notify(0, notificationBuilder.build());
_
Gradle
_compileSdkVersion 27
defaultConfig {
applicationId "com.myapp.app"
minSdkVersion 19
targetSdkVersion 27
versionCode 2
versionName "1"
multiDexEnabled true
testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
}
debug {
// Disable fabric build ID generation for debug builds
ext.enableCrashlytics = false
}
}
implementation 'com.google.firebase:firebase-messaging:15.0.0'
implementation 'com.google.Android.gms:play-services-location:15.0.0'
implementation 'com.google.Android.gms:play-services-auth:15.0.0'
implementation 'com.google.Android.gms:play-services-basement:16.0.1'
implementation 'com.google.Android.gms:play-services-ads-identifier:16.0.0'
implementation 'com.google.Android.gms:play-services-stats:16.0.1'
implementation 'com.google.Android.gms:play-services-tasks:16.0.1'
implementation 'com.google.Android.gms:play-services-ads-identifier:16.0.0'
implementation 'com.google.Android.gms:play-services-ads-identifier:16.0.0'
implementation 'com.google.Android.gms:play-services-maps:16.0.0'
_
Source: 中国語ROMでバックグラウンドサービスとジョブ(またはFCM)を有効にする
Infinix Note 5(Android One- Oreo)およびOppo F9(Oreo)は、アプリが強制終了された場合にプッシュ通知を受信しません。アプリがバックグラウンドまたはフォアグラウンドにある場合は正常に動作します。
アプリが強制終了される最近のアプリトレイからアプリをスワイプするときに、(ROM OS、MIUIなど)を使用する中国語のROM(強制停止に似ています)。これにより、サービスなどのバックグラウンドで実行されているすべてのタスクは、アプリでジョブが強制終了されます。優先度の高いFCMでさえ、中国のROMで日光が見えない
リアルタイムの問題:
1)ユーザーの場所を取得できません。そのため、リアルタイムの場所に依存しているアプリは適切に動作しません
2)FCMの優先度の高い通知を受け取ることはできません
3)アプリがトレイなどにない場合、特定のタスク/ジョブは実行されません。
溶液
ユーザーはアプリの設定で自動起動を有効にして、バックグラウンドサービス/ジョブの実行を維持する必要があります。デフォルトではオフです。使用できる一部のデバイスでこれを行うには、
サンプルコード
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Intent intent = new Intent();
String manufacturer = Android.os.Build.MANUFACTURER;
switch (manufacturer) {
case "xiaomi":
intent.setComponent(new ComponentName("com.miui.securitycenter",
"com.miui.permcenter.autostart.AutoStartManagementActivity"));
break;
case "oppo":
intent.setComponent(new ComponentName("com.coloros.safecenter",
"com.coloros.safecenter.permission.startup.StartupAppListActivity"));
break;
case "vivo":
intent.setComponent(new ComponentName("com.vivo.permissionmanager",
"com.vivo.permissionmanager.activity.BgStartUpManagerActivity"));
break;
}
List<ResolveInfo> arrayList = getPackageManager().queryIntentActivities(intent,
PackageManager.MATCH_DEFAULT_ONLY);
if (arrayList.size() > 0) {
startActivity(intent);
}
}
}
Oreoには新しいNotification Channels
実装( 開始Android 8.0(APIレベル26) )
以下のコードを使用してチャンネルを作成する必要があります
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
CharSequence name = "News Channel";
String description = "Default Notification News Channel";
int importance = NotificationManager.IMPORTANCE_DEFAULT;
NotificationChannel channel = new NotificationChannel(CHANNEL_ID, name, importance);
channel.setDescription(description);
NotificationManager notificationManager = getAppContext().getSystemService(NotificationManager.class);
notificationManager.createNotificationChannel(channel);
}
以下のように通知ビルダーをオーバーライドします
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(getAppContext(),CHANNEL_ID);
cHANNEL_IDの値があると仮定します
String CHANNEL_ID = "DEFAULT_NEWS_CHANNEL";
これはすでにOnePlus3Tデバイスでテストされているため、動作するはずです
これはすべての中国のデバイスの問題です。一度アプリを削除すると、メモリから削除され、すべてがアクティブになるわけではありません...しかし、他のデバイスメーカーの場合はそうではありません..彼らは削除しません完全にメモリからアプリ。私もxiaomiデバイスでこの問題に直面しました...彼らはアプリをロックするオプションがあり、RAMメモリをクリアするために殺されてもアプリをメモリに保持します
次のコードが役に立つことを願っています。すべてのデバイスで機能します。
Intent notificationIntent = new Intent(context, SplashScreenActivity.class);
notificationIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
Uri notificationSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationManager notificationManager =
(NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
// Create the NotificationChannel, but only on API 26+ because
// the NotificationChannel class is new and not in the support library
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
CharSequence nameChannel = context.getString(R.string.app_name);
String descChannel = context.getString(R.string.app_name);
int importance = NotificationManager.IMPORTANCE_DEFAULT;
NotificationChannel channel = new NotificationChannel(context.getString(R.string.app_name), nameChannel, importance);
channel.setDescription(descChannel);
// Register the channel with the system; you can't change the importance
// or other notification behaviors after this
assert notificationManager != null;
notificationManager.createNotificationChannel(channel);
}
PendingIntent pendingIntent = PendingIntent.getActivity((context), 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
// Create Notification
NotificationCompat.Builder notification = new NotificationCompat.Builder(context, context.getString(R.string.app_name))
.setChannelId(context.getString(R.string.app_name))
.setContentTitle(TextUtils.isEmpty(title) ? getString(R.string.app_name) : title)
.setContentText(description)
.setTicker(context.getString(R.string.app_name))
.setSmallIcon(R.drawable.ic_stat_name)
.setSound(notificationSound)
.setLights(Color.RED, 3000, 3000)
.setVibrate(new long[]{500, 500})
.setWhen(System.currentTimeMillis())
.setDefaults(Notification.DEFAULT_SOUND)
.setAutoCancel(true)
.setContentIntent(pendingIntent);
if (result != null) {
notification.setStyle(new NotificationCompat.BigPictureStyle().bigPicture(result));
}
assert notificationManager != null;
notificationManager.notify(100, notification.build());
通知チャンネルを作成しました。OreoのIf If条件をチェックします。
問題が発生した場合はお知らせください。私はあなたを助けるためにここにいます。
ありがとう。
私は同じ問題を抱えていて、検索して回避した後、詳細については手動で自動起動とバッテリー最適化の許可を有効にする必要があることがわかりました this link