App permissions

I need the name to request authorization from phone, sms, storage, camera, microphone, does anyone know how to list them below?

Answer phone calls:
android.permission.ANSWER_PHONE_CALLS
make calls:
android.permission.CALL_PHONE
Read contacts:
android.permission.READ_PHONE_NUMBERS

Read sms:
android.permission.READ_SMS
Receive sms messages:
android.permission.RECEIVE_SMS
Send sms messages:
android.permission.SEND_SMS

Read files from eternal storage:
android.permission.READ_EXTERNAL_STORAGE
Write files to external storage:
android.permission.WRITE_EXTERNAL_STORAGE

android.permission.CAMERA

The only permission to ask for microphone is to record audio : android.permission.RECORD_AUDIO

4 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.