I have issues with the following manifest permissions, which I don't need or use in my app:
android.permission.RECORD_AUDIO
android.hardware.microphone
android.permission.READ_EXTERNAL_STORAGE
I've overcome this by selecting skip permissions = true;
This solves the issue but created a new one. I need the ACCESS_FINE_LOCATION which became also unavailable because of skip permissions. What can be done to properly set the manifest with the right permissions? Thanks!