I know that this question was asked before here Block/disable recent apps button, but the answer is not working.
@Override
protected void onPause() {
super.onPause();
ActivityManager activityManager = (ActivityManager) getApplicationContext()
.getSystemService(Context.ACTIVITY_SERVICE);
activityManager.moveTaskToFront(getTaskId(), 0);
}
I used this code on 5.1 SDK. It's working, but the same program on 6.0 device is not working.
I want to make screen lock but have not found any solution on block recent app button