I would like to submit an app to the Play Store, but I am a tad bit confused as far as permissions are concerned.
Basically, the app would need permission for the users to either take pictures (Camera usage) or upload from their gallery (I believe that is the Manifest.permission.READ_EXTERNAL_STORAGE
? I don’t know if that is the correct term for accessing their gallery and such.
Do I just declare something like this in the AndroidManifest
file? And is that all it would take, please? Or it should be declared elsewhere, and how if so, please?
<manifest ...>
<uses-permission android:name="android.permission.CAMERA"/>
<application ...>
...
</application>
</manifest>
Mary Kay is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.