What problem does it solve? Submitting an Android app to Google Play risks rejection or account suspension when code violates policies on restricted permissions, data safety declarations, or prominent disclosures. This Skill automates a pre-submission audit by cross-referencing static code analysis with Play Store declarations to surface violations before review. ## Core Features & Use Cases - Static Policy Audit: Scans manifests, permissions, and source code for restricted permission misuse (exact alarms, all files access, background location, SMS/call log, accessibility APIs) and foreground service misconfiguration. - Data Safety Cross-Check: Traces data sources to off-device sinks, verifies prominent disclosures, and compares detected collection against the app's published Play Store Data Safety label. - Deterministic Compliance Report: Aggregates worker findings through a critic review pass and renders a Markdown report with severity ratings, evidence citations, and a remediation checklist. - Use Case: Before uploading a new release, run the audit on your app directory to detect an undeclared READ_CONTACTS usage or a missing foregroundServiceType, then fix the flagged files and update your Play Console declarations. ## Quick Start Audit my Android app in the current project directory for Google Play policy compliance and generate the compliance report.