You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@florianhirson audio permission in Android requires explicit approval from user. So even if it is added in manifest, it won't be approved by default. You need to ask explicitly for runtime permission.
I think it's not the better approach to add all potentially used permission in the library manifest. Apps end up declaring permissions that they don't use and this may be relevant with Android < 6, where users accept permissions upfront. I think you should document what permissions are needed to use the relevant features and leave to developers the declaration of such permissions in their manifest.
For anyone looking into this issue, in the meanwhile you can remove unwanted permission (like the suspicious record audio permission) in this way:
Describe the bug
I use the library only to take pictures and the permission RECORD_AUDIO is automatically added to the manifest.
Is there a way to avoid this permission to be added ?
The text was updated successfully, but these errors were encountered: