oppo,vivo应用程序终止通知没有出现在android fcm中

Posted

技术标签:

【中文标题】oppo,vivo应用程序终止通知没有出现在android fcm中【英文标题】:oppo, vivo app kill notification not coming in android fcm 【发布时间】:2018-11-03 05:01:36 【问题描述】:

在摩托罗拉测试应用程序,三星在应用程序被杀死时工作正常。但是当我在vivo中测试应用程序时,如果应用程序被破坏,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>

在vivo的情况下我没有收到消息,建议oppo任何帮助。

【问题讨论】:

以vivo为例,oppo的android os版本是多少? @Arpan os 是奥利奥。 不同之处在于,摩托罗拉和三星只是从“Recents”中清除应用程序,它的后台服务仍在运行,其中之一是 FCM 服务。而“vivo”和“oppo”强制关闭应用程序,同时关闭所有后台服务,因此它的 FCM 服务也关闭,该服务处理应用程序的自定义通知。 @Harish 我遇到了同样的问题,检查一下我的解决方案***.com/a/52943903/7666442 @Nilesh Rathod 我会试试这个,但不会进入 oppo 手机。 【参考方案1】:

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://***.com/questions/52849445/some-oreo-devices-are-not-getting-push-notification/52943903#52943903

【讨论】:

绝妙的答案!工作得很棒。一个问题,有没有一种方法可以让应用在后台运行而不提示用户手动启用它? 不,这是不可能的。【参考方案2】:

您可以进入设置>更多设置>权限管理(应用程序)>自动启动打开应用开关。

【讨论】:

以上是关于oppo,vivo应用程序终止通知没有出现在android fcm中的主要内容,如果未能解决你的问题,请参考以下文章

PeriodicWorkRequest 失败 redmi,vivo,oppo

android中的后台服务没有运行像oppo,vivo等设备

android firebase后台通知仅在vivo设备上不起作用

在小米或 Oppo 或 Vivo 手机上 - 应用程序任务未按预期工作

如何修改android下拉通知栏的高度???

OPPO手机没有消息通知