Google Play & Apple Store Emergency : Android 16 Compliance & Privacy Manifests.24h Diagnostic Hub
Kerweb. Agence Capacitor
Back to Blog
App Store / Compliance
4 min read read

App Store Rejection: Abusive Permission Requests

Julien Kermarec
September 6, 2026

The Rejection Reason (Guideline 5.1.1 - Data Collection and Storage)

Apple is uncompromising on privacy. If your app requests permission to access the camera, microphone, or location without it being strictly necessary for its operation, it will be rejected. Furthermore, the explanation messages (Purpose Strings) must be precise.

Fatal Mistakes

  1. Asking for location upon app launch before the user even understands what the app is for.
  2. An Info.plist file with a generic message like "We need your location".
  3. Forcing the user to create an account to access features that don't require it (like reading a public article).

The Solution

  1. Justify clearly (Purpose Strings): In your Info.plist file, the NSLocationWhenInUseUsageDescription key must contain an explicit sentence: "We need your location to show you the restaurants closest to you."
  2. Contextualize the request: Only ask for permission at the exact moment the user clicks the button (e.g., "Find my location") and not at startup (Splash Screen).
  3. Offer an alternative: If the user refuses GPS, allow them to manually enter their zip code.
App Store
iOS
Validation