Multimedia module requires CAMERA and RECORD_AUDIO permissions on Android
Unsolved
Mobile and Embedded
-
I added Multimedia library to an app with CMake:
target_link_libraries(${PROJECT_NAME} PRIVATE Qt6::Multimedia)
when I uploaded the app to Google App Store I got this in the Developer Console -> Pre-launch report:
Your app is requesting permissions which are used by less than 1% of functionally similar apps: android.permission.CAMERA android.permission.RECORD_AUDIO Users prefer apps that request fewer permissions and requesting unnecessary permissions can affect your app's visibility on the Play Store. If these permissions aren't necessary, you may be able to use alternative methods in your app and request fewer permissions. If they are, we recommend providing an explanation to users of why you need the permissions. Note: This guidance is based on a comparison with functionally similar apps, which change over time as new apps get published and existing apps change behavior. Therefore the warning may change even if you don't change your permission usage.
are these permissions really required if I use QAudioSink to play wav sounds?
How to suppress them?