closed
Disable ask for Audio & Video Permissions
Hello,
When i try Apps on Android Studio emulator, I notice there is prompt ask for permission for Aduio & Video recording.
How to disable that because my App is only for ecommerce store.
ThanksĀ
Asked 3 weeks ago on February 16, 2026 5:34 AM Comments 4 times
Mohamed Maghraby replied 3 weeks ago on February 16, 2026 9:22 AM
Thank you so much
kevin replied 3 weeks ago on February 16, 2026 9:04 AM
Hello
For IOS you have to comment or remove the permission code from the Podfile as shown in the attachment
'PERMISSION_MICROPHONE=1',
'PERMISSION_CAMERA=1',
- Kevin
ATTACHED FILES
Mohamed Maghraby replied 3 weeks ago on February 16, 2026 8:56 AM
Worked. Thanks a lot
Is this will work on iOS also?
I didn't try it yet on iPhone
kevin replied 3 weeks ago on February 16, 2026 6:25 AM
Hello
To disable the camera and audio permissions, please remove or comment out the following code from the AndroidManifest.xml file:
Path:
android/app/src/main/AndroidManifest.xmlCode :
android:name="com.mighty.web.AudioService"
android:enabled="true"
android:foregroundServiceType="mediaPlayback"
android:exported="false" />
android:name="com.pichillilorenzo.flutter_inappwebview.services.AudioService"
android:enabled="true"
android:exported="false" />
Additionally, in the Admin Panel, please set the value of “Is Support WebRTC Functionality?” to false, and then test the application again.
Please let us know if you need any further assistance.
- Kevin