Pick a depth. Each prompt opens in your AI pre-loaded with the lesson. Click a row to preview the prompt.
Mobile apps store secrets — auth tokens, encryption keys, biometric template hashes. Right storage matters: iOS Keychain (hardware-backed on devices with Secure Enclave), Android Keystore (hardware-backed via TEE / StrongBox). Storing secrets in plain UserDefaults / SharedPreferences = secrets readable by anyone with file-system access.
iOS Keychain: SecItemAdd(['kSecClass': 'kSecClassGenericPassword', 'kSecAttrAccessControl': SecAccessControlCreateWithFlags(.devicePasscode)]). Stored encrypted, requires device passcode to access. Android: KeyStore.getInstance('AndroidKeyStore'), key never leaves StrongBox.