Android Question Very concerning discovery

RickV

Member
Licensed User
Longtime User
I have just uploaded my very first abb to playstore and it states the following error....

Your app has an apk with version code 1 that requests the permission: android.permission.RECORD_AUDIO. Apps using this permission in an APK are required to have a privacy policy set.

I do not reference anything to do with audio except the beeper. Any ideas please??
 

JohnC

Expert
Licensed User
Longtime User
If your app doesn't record audio, then try adding this line into the manifest:

B4X:
RemovePermission(android.permission.RECORD_AUDIO)
 
Upvote 0

AnandGupta

Expert
Licensed User
Longtime User
You can also check the permission in the ide, as some library you are using may be using that permission.
 
Upvote 0

RickV

Member
Licensed User
Longtime User
Yes utwas the firebase libraries... analytics and messaging removed and now it works
Thank You
 
Upvote 0
Top