Amin Pinjari
Amin Pinjari

Reputation: 2173

Check if Foreground service is running in Android OREO

I want to check whether my service is running in or not, I was using below code which was working fine till nougat but not working in OREO

 private boolean isMyServiceRunning(Class<?> serviceClass, Context context) {
        ActivityManager manager = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
        for (ActivityManager.RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
            Log.d(TAG, "isMyServiceRunning: " + service.service.getClassName());
            if (serviceClass.getName().equals(service.service.getClassName())) {
                return true;
            }
        }
        return false;
    }

But above code is not working for foreground services.

I have referred this but it is also not working..

Upvotes: 2

Views: 2758

Answers (1)

Larry Schiefer
Larry Schiefer

Reputation: 15775

The ActivityManager.getRunningServices() API has been deprecated since API 26 and is no longer available as of Oreo. It was intended to only be used for debugging, not production apps. You should not rely on this type of API for your app.

Upvotes: 3

Related Questions