Android Permission List
Android Permission List Call Related Permissions <uses-permission android:name="android.permission.CALL_PHONE" /> Allows an application to initiate a phone call without going through the Dialer user interface for the user to confirm the call being placed. <uses-permission android:name="android.permission.CALL_PRIVILEGED" /> Allows an application to call any phone number, including emergency numbers, without going through the Dialer user interface for the user to confirm the call being placed. <uses-permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL" /> Allows an application to add voicemails into the system. <uses-permission android:name="android.permission.READ_PHONE_STATE" /> Allows read only access to phone state. You can get states like "Phone Ringing", "Call Received" etc using this permission. <uses-permission android:name="android.permission...