RuntimePermission
RuntimePermission copied to clipboard
Application getting unresponsive while asking for multiple permissions.
I have written the below code to ask for the camera, read external storage and write external storage permissions, but after I allow the permissions the App gets hanged.
askPermission(
Manifest.permission.READ_EXTERNAL_STORAGE,
Manifest.permission.WRITE_EXTERNAL_STORAGE,
Manifest.permission.CAMERA
)
The library version that I am using is 1.1.2.
Kindly help.