What are dangerous permissions in Android | Android Manifest permission list


Hii Guys welcome back my new post in this post i will show you How do I set permission in Android Manifest file And What are dangerous permission in Android So Let's start.

Quick Intro Permission:- specifies a system permission that the user must grant in order for the app to operate correctly in mobile, permission are granted by user when the application is installed.(on devices running Android 5.1 and lower) or while the app is running (on devices running Android 6.0 and higher)

Body Sensors

This permission is allow access to your health data and heart-rate monitors, and external sensors.


<uses-permission android:name="android.permission.BODY_SENSORS"/>

Calendar
This permission is access your calendar data and delete,insert or update.



<uses-permission android:name="android.permission.READ_CALENDAR"/>  
 <uses-permission android:name="android.permission.WRITE_CALENDAR"/>  

Camera
This permission is access and allowing you to capture pictures and videos.


 
<uses-permission android:name="android.permission.CAMERA"/>  

Contacts
This permission is read, write or edit your contact list


 
<uses-permission android:name="android.permission.READ_CONTACTS"/>  
 <uses-permission android:name="android.permission.WRITE_CONTACTS"/>  

Location
This permission is access your location using GPS for high accuracy, and cellular data and WiFi for approximate accuracy.


 
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATIO"/>  
 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>  

Microphone
This permission to used for recording audio, including for video.


 
<uses-permission android:name="android.permission.RECORD_AUDIO"/>  


Phone
This permission is access your phone number and network info, required for making calls, call redirect and editing call logs.


 
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>  

SMS
This permission is access your SMS, Read, and Send MMS And SMS Messages.


 
<uses-permission android:name="android.permission.SEND_SMS"/>  
 <uses-permission android:name="android.permission.READ_SMS"/>  

Storage
This permission to read and write files to your phone's internal and external storage.



<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>  
 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>  

Display Over Other App
This is a special permission on android devices which allows one app to appear on the top of other apps.



<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>  

Modify System Setting
This special permission to read your current settings, turn on wifi and change screen brightness or volume.


 
<uses-permission android:name="android.permission.WRITES.SETTINGS"/>  

Install Unknown App
This special permission a source for apps you want to install

 
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />  

Usage Access
This permission allow an app to track what other apps you're using and other details.


<uses-permission android:name="android.permission.PACKAGE_USAGE_STATS"/>  


ok guys so today's post i will show you what is request code in android permission and android permission example code, so i hope you like this post and i will see you in the next post Thanks and Take Care

Post a Comment

2 Comments

Please do not enter any spam link in the comment box.