What problem does it solve? Choosing and implementing the right native mobile architecture is hard: Swift 6 concurrency rules, Compose side-effect APIs, DI scoping, and deprecated security libraries change fast, and picking wrong patterns leads to costly rewrites. ## Core Features & Use Cases - iOS Guidance: Covers Swift 6 strict concurrency (Sendable, actors, @MainActor), TCA vs MVVM/MV architecture, Swift Package Manager, Keychain/Secure Enclave/App Attest security, and Xcode Cloud CI/CD. - Android Guidance: Covers Kotlin Coroutines/Flow, UDF with state hoisting, the full Compose side-effect API table (LaunchedEffect, DisposableEffect, derivedStateOf, snapshotFlow), Hilt DI scoping, Room, DataStore, and WorkManager. - Security & Platform Decisions: Explains the deprecation of Jetpack Security Crypto and migration to Android Keystore/StrongBox, BiometricPrompt with CryptoObject, and when the Intune App SDK mandates going native over React Native. - Use Case: You are starting a new Android app and need to decide between MVVM and MVI, wire Hilt ViewModels with correct scopes, and replace EncryptedSharedPreferences after its deprecation. ## Quick Start Ask the assistant to design the architecture for a new Jetpack Compose app with Hilt DI, Room persistence, and secure key storage using Android Keystore.