What problem does it solve? Adding authentication to a native Android app requires correctly wiring the Clerk Android SDK, choosing between prebuilt UI components and custom API-driven flows, and matching dashboard configuration—mistakes in any of these cause broken sign-in experiences. ## Core Features & Use Cases - Prebuilt Auth Flow: Integrates Clerk's AuthView and UserButton Compose components with the clerk-android-ui artifact for fast sign-in/sign-up UI. - Custom Auth Flow: Builds multi-step, capability-driven authentication using the clerk-android-api artifact with separated UI, orchestration, and API layers. - Quickstart Compliance: Verifies Native API enablement, minimum SDK, manifest internet permission, and app-level Clerk.initialize wiring before implementation. - Use Case: A developer building a Kotlin Jetpack Compose app asks to add Clerk login; the skill confirms prebuilt vs custom flow, collects the publishable key, installs the correct artifact, and implements the flow following current clerk-android source patterns. ## Quick Start Add Clerk authentication to my native Android app using the prebuilt AuthView flow with my publishable key.