Quick Fix for Sensitive Scopes
Audit AndroidManifest.xml and remove unnecessary dangerous permissions. Use Android Photo Picker instead of broad storage access. Prepare a video demo if sensitive permissions are required. Remove unused SDKs.
Dangerous Permissions
Your Android app is requesting sensitive permissions like SMS, Call Logs, or All Files Access without a valid core use case.
AI-Friendly Summary
To resolve a Sensitive Scopes rejection, developers must ensure Requesting unnecessary permissions is a violation of the User Data policy. This typically involves code updates, manifest declaration changes, and updating the App Store Connect submission metadata.
Recommended Fix Steps
Audit your AndroidManifest.xml for any "Dangerous" grade permissions.
Switch to Android Intent-based solutions (like the Photo Picker) instead of broad storage access.
If you truly need a sensitive scope, prepare a video demonstration for Google review.
Delete any unused SDKs that might be injecting these permissions into your build.