Foreground notification service not working in one plus devices

前端 未结 2 2184
情书的邮戳
情书的邮戳 2021-02-09 23:13

Below is the code for starting the foreground service. It is working fine for many devices like Samsung, moto, Vivo, Oppo and also with Android version nougat and oreo, but not

2条回答
  •  臣服心动
    2021-02-09 23:57

    So I solved this question just one hour ago:

    Manifest

    
    
    

    Application - creating a notification channel

    public class AppNotification extends Application {
    
    public static final String CHANNEL_ID = "AppNotificationChannel";
    private void CreateNotificationChannel() {
        if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
            NotificationChannel serviceChannel = new NotificationChannel(
                    CHANNEL_ID,
                    "App Notification",
                    NotificationManager.IMPORTANCE_HIGH
            );
            NotificationManager manager = getSystemService(NotificationManager.class);
            manager.createNotificationChannel(serviceChannel);
        }
    }
    

    }

    Activity

    first you need to ask to the user to disable battery optimizations :

    Intent intent = new Intent();
        String packageName = this.getPackageName();
        PowerManager pm = (PowerManager) this.getSystemService(Context.POWER_SERVICE);
        if (pm.isIgnoringBatteryOptimizations(packageName))
            intent.setAction(Settings.ACTION_IGNORE_BATTERY_OPTIMIZATION_SETTINGS);
        else {
            intent.setAction(Settings.ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS);
            intent.setData(Uri.parse("package:" + packageName));
            startActivity(intent);
        }
    

    then you need to start the service like this to handle different versions:

    public void startService() {
        Intent serviceIntent = new Intent(InitSkipperActivity.this, TrackingBackgroundService.class);
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            startForegroundService(serviceIntent);
        } else {
            startService(serviceIntent);
        }
    }
    

    Service

    public class TrackingBackgroundService extends Service {
    
    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }
    
    @Override
    public void onCreate() {
        super.onCreate();
    }
    
    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        Intent notificationIntent = new Intent(this, TrackingActivity.class);
        notificationIntent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
    
        Notification notification = new NotificationCompat.Builder(this, CHANNEL_ID)
                .setContentTitle("title")
                .setContentText("content")
                .setSmallIcon(R.mipmap.pro_icon)
                .setPriority(5)
                .setContentIntent(pendingIntent)
                .build();
        startForeground(1, notification);
    
        return START_STICKY;
    }
    

    }

    After this you need to test your service with the android profiler:

    My app was with an abnormal CPU usage and on Oppo, OnePlus and Xiaomi and Samsung when I was offline tracking was using 50 to 60% CPU. found it was some threads that I called interrupt but were still running

    after learning to use, start recording pieces of your app and analized them, you have 2 good options to start:

    • Sample Java Methods

    • Trace Java Methods

    The Android Logcat its good to see the BG detect of oneplus trying to delete your service and if needed your app.

    P.S: BGDetect eliminates without fear. I need to put my tracking performance both online and offline to an average of 20% to 30% in app and 15% to 20% on sleep before OnePlus and Oppo stop killing me without giving me the chance of rebooting my service.

    As you probably already noticed when these OS want to kill something they start from the app an not from the service, keep in mind: DO NOT BOUND an app to a SERVICE if you do this I do not know why but the OS is even more relentless.

    BG-Detect is too much -> they should've given the android devs the warning when reimplemented the function

    P.P.S It's too much, but I take my hat OnePlus BugHunters, its damm well implemented.

    Hope I could help.

    tested on OP3 Oreo 8.0.1

    Editted

    OnePlus on reboot sets your app to optimized again. Am testing to fix the ussue

提交回复
热议问题