Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WakefulBroadcastReceiver is deprecated

For creating a receiver I'm extended WakefulBroadcastReceiver in my old project. But now it's deprecated. Instead of WakefulBroadcastReceiver which Receiver I should use now and how to convert below code with new method?

Here is my code:

 public class TaskFinishReceiver extends WakefulBroadcastReceiver {
    private PowerManager mPowerManager;
    private PowerManager.WakeLock mWakeLock;
    @Override
    public void onReceive(Context context, Intent intent) {
        mPowerManager = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
        turnOnScreen();
        Intent wakeIntent = new Intent();

        wakeIntent.setClassName("com.packagename", "com.packagename.activity.TaskFinished");
        wakeIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        context.startActivity(wakeIntent);
    }


    public void turnOnScreen(){
        mWakeLock = mPowerManager.newWakeLock(PowerManager.SCREEN_BRIGHT_WAKE_LOCK | PowerManager.ACQUIRE_CAUSES_WAKEUP, "tag");
        mWakeLock.acquire();
    }
}
like image 829
Yeahia2508 Avatar asked Nov 10 '17 07:11

Yeahia2508


People also ask

How do I use WakefulBroadcastReceiver on Android?

A WakefulBroadcastReceiver uses the method startWakefulService() to start the service that does the work. This method is comparable to startService() , except that the WakefulBroadcastReceiver is holding a wake lock when the service starts.

How do you use WakefulBroadcastReceiver?

WakefulBroadcastReceiver is a helper class that receives a device wakeful event. you shouldoverride onReceive() method where you can call a service or perform your task.


2 Answers

You can rewrite your code like this:

    public class TaskFinishReceiver extends BroadcastReceiver {

        @Override
        public void onReceive(Context context, Intent intent) {
            //do your stuff in the JobIntentService class
            MyJobIntentService.enqueueWork(context, intent);
        }
    }

This will work since, according to documentation, the new JobIntentService class will handle both wake locks and backward compatibility:

You do not need to use WakefulBroadcastReceiver when using this class. When running on Android O, the JobScheduler will take care of wake locks for you (holding a wake lock from the time you enqueue work until the job has been dispatched and while it is running). When running on previous versions of the platform, this wake lock handling is emulated in the class here by directly calling the PowerManager; this means the application must request the WAKE_LOCK permission.

like image 132
Bolling Avatar answered Oct 06 '22 08:10

Bolling


WakefulBroadcastReceiver Deprecated in API level 26.1.0.

As of Android O, background check restrictions make this class no longer generally useful. (It is generally not safe to start a service from the receipt of a broadcast, because you don't have any guarantees that your app is in the foreground at this point and thus allowed to do so.) Instead, developers should use android.app.job.JobScheduler to schedule a job, and this does not require that the app hold a wake lock while doing so (the system will take care of holding a wake lock for the job).

public class JobSchedulerService extends JobService {

    @Override
    public boolean onStartJob(JobParameters params) {

        return false;
    }

    @Override
    public boolean onStopJob(JobParameters params) {

        return false;
    }

}

For demo case, Check

  • JobScheduler
like image 32
IntelliJ Amiya Avatar answered Oct 06 '22 09:10

IntelliJ Amiya