What are AI processing consent rejections?
Apple requires explicit consent before processing user data with AI Apps that send user data to AI models (ChatGPT, Claude, custom models, etc.) must get explicit user consent before processing. This is a newer Apple requirement that catches many developers off guard. Common rejection messages:- “Your app does not obtain user consent before processing data with AI”
- “The app sends user content to AI services without clear disclosure”
- “Users must be informed and consent to AI processing of their data”
Why this happens
AI processing is a privacy-sensitive operation Apple treats sending user data to AI services as a significant privacy event. Users must understand and agree to this before it happens. Common mistakes:- Sending user input to AI APIs without any consent prompt
- Burying AI disclosure in terms of service
- No clear indication that AI is processing user data
- Consent obtained on web but not persisted in native app
How to fix it
Use native confirm dialogs
Despia intercepts JavaScript confirm() and shows native iOS UI When your app runs on iOS, Despia automatically converts JavaScriptconfirm() dialogs into native system dialogs with the liquid glass design. The confirm events work exactly like standard JavaScript.
confirm() blocks all JavaScript and CSS execution while the dialog is open. Call it after animations complete to avoid UI stutter. Don’t trigger it during page transitions, loading states, or while animations are running.
Persist consent with Storage Vault
Store consent across sessions and reinstalls Don’t ask users every time. Use the Storage Vault to remember their choice. Consent persists even if the user uninstalls and reinstalls the app.Implement before any AI call
Gate all AI features behind consent check Call the consent check before any AI processing. This ensures users always consent before their data is sent to AI services.Allow users to change their mind
Add a way to revoke consent in Settings Apple expects users to be able to withdraw consent. Add an option in your Settings screen.Complete implementation example
Full consent flow with persistenceWhat to include in the consent message
Be clear and specific Apple wants users to understand what they’re agreeing to. Include:- That AI will process their data
- What data will be sent (input, content, etc.)
- That they can change the setting later
- General purpose (analysis, responses, recommendations)
“This app uses AI to analyze your input and provide intelligent responses. Your data will be processed by our AI service. You can change this setting anytime in Settings. Do you agree to AI processing?”Bad example:
“Enable smart features?”
Quick checklist
- Consent dialog shown before any AI processing
- Dialog called after animations complete (avoid UI stutter)
- Dialog clearly mentions AI and data processing
- Consent stored in Storage Vault (persists across sessions)
- Users can revoke consent in Settings
- AI features blocked when consent is false
- Check for
despia-iphoneordespia-ipaduser agent - Standard
confirm()used (Despia shows native UI)
Common rejection reasons
| Rejection | Fix |
|---|---|
| ”No AI consent obtained” | Add consent check before any AI calls |
| ”Consent not clear” | Update dialog text to explicitly mention AI processing |
| ”No way to revoke consent” | Add toggle in Settings screen |
| ”Consent not persisted” | Use Storage Vault to remember choice |
Still stuck?
If you keep getting rejected for AI consent issues:- Review your consent dialog text - is it clear about AI processing?
- Verify consent check runs before every AI API call
- Test the full flow: fresh install → consent prompt → AI feature → reinstall → no prompt
- Contact support: support@despia.com with:
- Your rejection notice in full
- Screenshot of your consent dialog
- Description of your AI features