无法在Android Pie中接收百度推送通知

时间:2019-06-13 09:45:52

标签: android push-notification baidu

我已经在Android应用中实现了Baidu push notifications。不管应用程序是否在运行,直到Android的旧版本,推送通知都可以正常工作。但是,在Android Pie (Android-9)中,我只能在前景或后台堆栈中的应用程序中获得推送通知。

如果将应用程序从后台应用程序堆栈中删除,则该应用程序将不会收到通知。

我正在使用最新版本的Baidu Push SDK,可从以下网站下载: https://push.baidu.com/sdk/push_client_sdk_for_android

我尝试了在Android Pie上官方Baidu Push SDK软件包中提供的示例。但是我面临着同样的问题。如果应用程序位于前台或后台堆栈中,则我们会收到通知,否则我们不会收到通知。

以下是我的“推送通知”接收器类:

public class BaiduPushReceiver extends PushMessageReceiver {

    Context mContext;
    public static final int NOTIFICATION_ID = 1;
    NotificationCompat.Builder builder;
    private NotificationManager mNotificationManager;

    @Override
    public void onBind(Context context, int errorCode, String appid,
                       String userId, String channelId, String requestId){
        Log.d("MY_APP","----*-*-*-*-*-* ChannelID:"+channelId+"*-*-*-*-*-------");
        Log.d("MY_APP","ErrorCode:"+errorCode+"  AppId:"+appid+"   UserId:"+userId+"  ChannelId:"+channelId+"  RequestId:"+requestId);

        SharedPreferencesManager.storeValue(SharedPreferencesManager.DEVICE_TOKEN, channelId);
    }
    private void sendNotification(String msgContent, Context context)
    {
        Bundle extra = new Bundle();
        extra.putString("message_data",msgContent);
        String message="";
        String type;
        String id;
        try{
            JSONObject jsob = new JSONObject(msgContent);
            String description = jsob.getString("description");
            jsob = new JSONObject(description);
            message = jsob.getString("message");
            type = jsob.getString("type");
            id = jsob.getString("id");
            Log.d("MY_APP","Message:"+message);
            Log.d("MY_APP","Type:"+type);
            Log.d("MY_APP","Id:"+id);
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }


        Uri alarmSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);

        Intent intent;

        if(SharedPreferencesManager.isEmpty(SharedPreferencesManager.TOKEN))
            intent = new Intent(context, poiuy.class);
        else
            intent = new Intent(context, asdf.class);

        intent.putExtras(extra);

        PendingIntent contentIntent = PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);

        try {
            message = java.net.URLDecoder.decode(message, "UTF-8");

        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }

        mNotificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);

        //contentIntent.put("NotificationMessage", notificationMessage);

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            NotificationChannel notificationChannel = new NotificationChannel("MY_APP_CHANNEL_1", "my app Channel", NotificationManager.IMPORTANCE_HIGH);
            notificationChannel.setVibrationPattern(new long[]{500, 500, 500, 500});
            mNotificationManager.createNotificationChannel(notificationChannel);
            NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context,"MY_APP_CHANNEL_1")
                    .setSmallIcon(R.drawable.ic_launcher)
                    .setContentTitle(context.getString(R.string.app_name))
                    .setStyle(new NotificationCompat.BigTextStyle().bigText(message))
                    .setContentText(message)
                    .setVibrate(new long[]{500, 500, 500, 500})
                    .setSound(alarmSound)
                    .setAutoCancel(true)
                    .setContentIntent(contentIntent);
            mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
        }
        else
        {
            NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context)
                    .setSmallIcon(R.drawable.ic_launcher)
                    .setContentTitle(context.getString(R.string.app_name))
                    .setStyle(new NotificationCompat.BigTextStyle().bigText(message))
                    .setContentText(message)
                    .setVibrate(new long[]{500, 500, 500, 500})
                    .setSound(alarmSound)
                    .setAutoCancel(true)
                    .setContentIntent(contentIntent);

            mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
        }
    }
        @Override
    public void onUnbind(Context context, int i, String s) {

    }

    @Override
    public void onSetTags(Context context, int i, List<String> list, List<String> list1, String s) {

    }

    @Override
    public void onDelTags(Context context, int i, List<String> list, List<String> list1, String s) {

    }

    @Override
    public void onListTags(Context context, int i, List<String> list, String s) {

    }

    @Override
    public void onMessage(Context context, String s, String s1) {
        Log.d("MY_APP","OnMessage Called......"+"\nS="+s+"\ns1="+s1);
        sendNotification(s,context);
    }

    @Override
    public void onNotificationClicked(Context context, String s, String s1, String s2) {
        Log.d("BAIDU_PUSH","OnNotificationClicked called......");
    }

    @Override
    public void onNotificationArrived(Context context, String s, String s1, String s2) {
        Log.d("BAIDU_PUSH","onNotificationArrived called......");
    }
}

在上面的代码中,如果应用未运行(前景或后台),则不会调用onMessage(...)回调方法本身。

P.S。请注意,这与Notification Channels中引入的Oreo无关,因为我已经在我的应用程序中进行了处理,而在Push SDK示例中也进行了处理。

任何在Android Oreo和Pie中处理此问题的修补程序/解决方法都将非常有用。

谢谢。

1 个答案:

答案 0 :(得分:1)

在使用百度推SDK时,我也遇到了同样的问题。自Android O以来,由于在应用程序上实施了电池优化,因此许多设备在终止状态下不会收到来自百度的消息。当我撤消该应用程序上的所有电池优化限制时,它开始在终止状态下工作。

我建议您使用FCM而不是百度来进行推送通知。其性能始终优于百度。