Pick a depth. Each prompt opens in your AI pre-loaded with the lesson. Click a row to preview the prompt.
Android's permission model evolved from install-time (pre-6.0) to runtime (6.0+) to scoped (10+). Modern apps must request dangerous permissions at use-time, with UI prompts. SafetyNet (now Play Integrity API) lets apps attest device integrity — has the device been rooted, is it a stock OEM build, was it tampered. The attestation is cryptographically signed by Google.
Modern Android permission: requestPermissions([ACCESS_FINE_LOCATION]) at use-time. User sees prompt: 'allow once / while using / deny'. App handles each branch. Play Integrity API: integrityManager.requestIntegrityToken() returns a JWT signed by Google asserting device integrity.