15

三星S8/S5/J2/Note3正在Firebase Push Notification成功地在后台或前台杀死应用程序,

但是如果应用程序被杀死Infinix Note 5 (Android One- Oreo)Oppo F9(Oreo)则不会收到推送通知,如果应用程序处于后台或前台,它们可以正常工作。

我浏览了很多文章,thisthis,提到中国手机有这个问题,并且从用户端有一些工作可以使这些通知在他们的手机上工作。

但我想知道开发方面是否有任何可能使通知在每个 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());

摇篮

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'
4

6 回答 6

13

来源在中文 ROM 中启用后台服务和作业(或 FCM)

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);
        }
    }

}
于 2018-10-23T07:56:27.620 回答
6

在 Oreo 中,他们引入了一种新的推送通知通道化概念。您可以在此处阅读有关通道化的更多信息。分别实施奥利奥及以上矿石的通知。您可以参考以下答案来解决此问题

我已经修复了 xamarin.android 中的问题,希望这对你有用。

于 2018-10-19T14:19:28.193 回答
5

这是所有中国设备的问题。一旦你杀死了应用程序......它会从内存中删除,而不是所有活动......但如果其他设备制造商不是这种情况......他们不会删除该应用程序完全来自内存。我也遇到过小米设备的这个问题......他们可以选择锁定应用程序,即使应用程序被杀死以清除内存,它也会将应用程序保留在内存中

于 2018-10-22T09:06:30.873 回答
4

由于 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 设备上进行了测试,所以它应该适合你

于 2018-10-25T22:52:24.600 回答
3

我希望以下代码对您有用。它在每种设备上都为我工作。

        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());

我刚刚创建了通知通道,检查奥利奥的条件。

如果您有任何问题,请告诉我。我是来帮你的。

谢谢。

于 2018-10-24T10:31:46.137 回答
1

我遇到了同样的问题,经过搜索和解决后,我发现用户需要手动启用自动启动和电池优化权限,更多详细信息请参阅链接

于 2019-01-15T08:20:30.247 回答