More screenshots

    Works with the AI tools you already use

    Claude CodeClaude CodeCursorCursorCodex CLICodex CLIGitHub CopilotGitHub CopilotGemini CLIGemini CLI+20 more

    Android Kotlin App Generator

    2

    Generate complete, production-ready Android Kotlin apps using Jetpack Compose and Clean Architecture.

    $9.99

    Secure checkout via Stripe

    30-day refund guarantee

    Converts to your local currency at checkout

    0 installsSecurity scanned
    Android Kotlin App Generator

    Android Kotlin App Generator

    Example session with this skill installed

    Create a fitness tracker app called FitFlow. It needs a dashboard to see daily steps, a list of past workouts from a local database, and a form to log a new workout.

    • Read your context and instructions
    • Compiled the android kotlin app

    I have generated the full project structure for FitFlow, implementing local persistence with Room and state management via StateFlow.

    App Blueprint: FitFlow

    Purpose: Track daily physical activity and log workout history.
    Target user: Fitness enthusiasts wanting local data privacy.
    Screens: Dashboard (Steps/Summary), WorkoutHistory (List), LogWorkout (Form).
    Data models: Workout, DailyStats.
    External APIs: none
    Auth: no
    Assumptions: Steps are simulated for this version; data is stored locally via Room.

    // app/src/main/java/com/example/fitflow/ui/screens/dashboard/DashboardViewModel.kt
    package com.example.fitflow.ui.screens.dashboard
    
    import androidx.lifecycle.ViewModel
    import androidx.lifecycle.viewModelScope
    import dagger.hilt.android.lifecycle.HiltViewModel
    import kotlinx.coroutines.flow.*
    import kotlinx.coroutines.launch
    import javax.inject.Inject
    
    data class DashboardUiState(
        val steps: Int = 0,
        val isLoading: Boolean = false,
        val error: String? = null
    )
    
    @HiltViewModel
    class DashboardViewModel @Inject constructor(
        private val repository: FitnessRepository
    ) : ViewModel() {
    
        private val _uiState = MutableStateFlow(DashboardUiState())
        val uiState: StateFlow<DashboardUiState> = _uiState.asStateFlow()
    
        init {
            loadDashboard()
        }
    
        private fun loadDashboard() {
            viewModelScope.launch {
                _uiState.update { it.copy(isLoading = true) }
                repository.getDailySteps()
                    .onSuccess { s -> _uiState.update { it.copy(steps = s, isLoading = false) } }
                    .onFailure { e -> _uiState.update { it.copy(error = e.message, isLoading = false) } }
            }
        }
    }
    
    // app/src/main/java/com/example/fitflow/ui/screens/dashboard/DashboardScreen.kt
    package com.example.fitflow.ui.screens.dashboard
    
    import androidx.compose.material3.*
    import androidx.compose.runtime.*
    import androidx.compose.foundation.layout.*
    import androidx.compose.ui.Modifier
    import androidx.compose.ui.unit.dp
    
    @OptIn(ExperimentalMaterial3Api::class)
    @Composable
    fun DashboardScreen(viewModel: DashboardViewModel) {
        val state by viewModel.uiState.collectAsState()
    
        Scaffold(
            topBar = { TopAppBar(title = { Text("FitFlow Dashboard") }) }
        ) { padding ->
            Column(modifier = Modifier.padding(padding).padding(16.dp)) {
                if (state.isLoading) {
                    CircularProgressIndicator()
                } else {
                    Text(text = "Steps Today: ${state.steps}", style = MaterialTheme.typography.headlineLarge)
                    Spacer(modifier = Modifier.height(20.dp))
                    Button(onClick = { /* Navigate to Log */ }) {
                        Text("Log Workout")
                    }
                }
            }
        }
    }
    

    Next steps

    1. Copy the generated FitnessRepository.kt and WorkoutDao.kt to the data layer.
    2. Update Navigation.kt to include the LogWorkout route.
    3. Run the Hilt annotation processor to generate dependency graphs.

    Connects securely to your tools. The creator never sees your data.

    What you get

    Scaffold a new Android project with Hilt and Room pre-configured.Convert UI wireframes into functional Jetpack Compose screens.Implement MVVM architecture without writing boilerplate repositories.Generate full Gradle build scripts with optimized dependency sets.

    About this skill

    The problem

    Manually scaffolding a modern Android project takes hours of boilerplate setup. Developers often struggle to maintain consistency across Clean Architecture layers while wiring up Hilt, Compose, and Coroutines.

    What it does

    Generates full, runnable Kotlin Android projects from a single prompt or wireframe. Architects apps using MVVM, Clean Architecture, and Hilt dependency injection. Builds reactive UIs with Jetpack Compose and Material Design 3. Configures full data layers including Room for persistence and Retrofit for networking. Delivers complete source code for every file, from build.gradle.kts to ViewModels and UI Screens.

    Frameworks & tools

    Kotlin, Jetpack Compose, Material Design 3, Hilt, Coroutines, StateFlow, Navigation Compose, Room, Retrofit, and OkHttp.

    Why this beats prompting it yourself

    Generic LLMs often mix outdated XML layouts with modern Kotlin or leave placeholders like // TODO in complex logic. This skill enforces strict, production-ready standards and produces the entire file tree in one pass, ensuring DI modules and repositories actually connect.

    Use cases

    Convert a PRD or feature list into a working functional prototype. Scaffold a production-grade foundation for a new client project. Transform UI screenshots or wireframes into Compose layouts. Add new features to existing projects while maintaining architectural integrity.

    Known limitations

    Does not support Java. Requires Android Studio and a minimum SDK of 26 for the generated code to run.

    How to install

    Works the same in every agent - Claude, Cursor, Codex, Copilot and 20+ more.

    ~30 seconds
    1. 1

      Download the ZIP

      Free skills download straight away. Paid skills unlock right after purchase.

    2. 2

      Unzip into your skills folder

      Every agent reads skills from one folder on your machine. Drop the unzipped folder in there.

    3. 3

      Ask your agent to use it

      Restart the agent if it was already running. It picks the skill up automatically - no config needed.

    Skills folder by agent

    Click the path to copy it. Create the folder if it does not exist yet.

    Reviews

    No reviews yet

    Be one of the first to try it. Every listed skill passes our trust checks below.

    Security scanned

    Passed our 8-point scan before listing

    Fresh listing

    Recently published to Agensi

    30-day refund

    Not a fit? Get your money back

    Trust & safety

    Security scanned

    Verified clean 7 days ago

    • Passed all security checks, Safe to install

    Listed7 days ago

    What's inside

    Frequently Asked Questions