10-06-2023 04:16 AM
The app store is asking to justify some permission my app ask as shown in the first picture but the manifest but the manifest we are uploading doesn't ask for storage permissions. Is there a way some config are overrriding the manifest?
12-20-2023 03:06 AM
Hello ,
You can try following with your unwanted Permission. even if you not have the Permission in your Android Manifest , Unity adds it at build. With the "remove" it removes the ones you dont want.
i found myself this at https://skarredghost.com/2021/03/24/unity-unwanted-audio-permissions-app-lab/
at the very bottom. And it worked. (quest2/3 applab project.)
<uses-permission android:name="android.permission.RECORD_AUDIO" tools:node="remove" />
Hope it works