GET_TASKS was a ‘normal’ permission which can be requested by 3rd party applications .
Read moreWhat is CALL_PHONE permission?
Permission CALL_PHONE belong to dangerous permission group . So if your apps target SDK is 23 or higher and your device is running on Android 6.0 or higher, you must request for CALL_PHONE permission while the app is running. Example : String number = (“tel:” + numTxt.
Read moreHow do I put vibrate permission on android?
This is how you let the phone Vibrate thru code: // Get instance of Vibrator from current Context Vibrator v = (Vibrator) getSystemService(Context. VIBRATOR_SERVICE); // Vibrate for 300 milliseconds v. vibrate(300);9 Mar 2016
Read more