在摩托罗拉测试应用程序,三星在应用程序被杀时运行良好。但当我在体内测试应用程序时,oppo在应用程序被破坏的情况下不起作用。

 public void onMessageReceived(RemoteMessage remoteMessage) {
    Log.e(TAG, "From: " + remoteMessage.getFrom());

    if (remoteMessage == null)
        return;

    // Check if message contains a notification payload.
    if (remoteMessage.getNotification() != null) {
        Log.e(TAG, "Notification Body: " + remoteMessage.getNotification().getBody());
        //  handleNotification(remoteMessage.getNotification().getBody());
    }

    // Check if message contains a data payload.
    if (remoteMessage.getData().size() > 0) {
        Log.e(TAG, "Data Payload: " + remoteMessage.getData().toString());

        try {
            JSONObject json = new JSONObject(remoteMessage.getData().toString());
            handleDataMessage(json);
        } catch (Exception e) {
            Log.e(TAG, "Exception: " + e.getMessage());
        }
    }
}

Android清单XML:
 <service
        android:name="notification.MyFirebaseMessagingService"
        android:exported="true">
        <intent-filter>
            <action android:name="com.google.firebase.MESSAGING_EVENT" />
        </intent-filter>
    </service>
    <service android:name="notification.MyFirebaseInstanceIDService">
        <intent-filter>
            <action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
        </intent-filter>
    </service>

我没有收到维梧的消息,oppo任何帮助将被推荐。

最佳答案

infinix note 5(android one-oreo)和oppo f9(oreo)没有得到
推送通知如果应用程序被终止,如果应用程序在
背景或前景。
中国rom使用(oxygen os,miui等)当应用程序从最近的应用程序托盘中刷过时,你的应用程序将终止(类似于强制停止)。由于这个原因,在后台运行的每一个任务,比如服务,作业都会被应用程序杀死。即使是高优先级的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);
    }
}

}

SOURCE: https://stackoverflow.com/questions/52849445/some-oreo-devices-are-not-getting-push-notification/52943903#52943903

08-05 11:54