In my app I need to make default permission for draw over other app as true, like in most of the Android app.
How to do this in my app.
In my app I need to make default permission for draw over other app as true, like in most of the Android app.
How to do this in my app.
This permission allow to draw over app
Enable it by redirecting user to setting page
if (!Settings.canDrawOverlays(this)) { Intent intent = new Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION, Uri.parse("package:" + getPackageName())); startActivityForResult(intent, 0); }