2
I have the following permission to access the camera and store the Androidmanifest.xml file:
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
But when installing the app on my Smartphone, camera permission is disabled, I have to enter the app permissions and manually activate for the app to work.
Storage permissions, a question appears when opening the application if the user wants to allow the application to save photos. But the camera doesn’t ask. What should I do for the question to appear for camera permission too ?
Have to do the same as was done for storage permission.
– ramaral