-
Notifications
You must be signed in to change notification settings - Fork 2k
Closed
Labels
Description
I'm converting a flaskapp combined with SpeechRecognition Javascript into an apk (I get the html here) . And i tried to add the Microphone permission by adding:
Python:
from android.permissions import Permission, request_permissions
request_permissions([Permission.INTERNET,Permission.MODIFY_AUDIO_SETTINGS,Permission.RECORD_AUDIO])
Buildozer.spec
android.permissions = INTERNET,RECORD_AUDIO,MODIFY_AUDIO_SETTINGS
android.api = 30
But when i run apk and check the output, i still got not-allowed error in javascript. Seems like the microphone permission doesn't works.
This problems is aready in StackOverFlow but i didn't receive thg wanted answer.
Reactions are currently unavailable