scaffold_android_project
Create a minimal Kotlin Android project in an empty directory with Gradle build files, manifest, Activity, resources, README, and gitignore — ready to build immediately if Gradle is installed.
Instructions
Create a minimal Kotlin Android application in a new empty directory, including Gradle Kotlin DSL files, an AndroidManifest, a launcher Activity, resources, README, and gitignore. The tool never overwrites a non-empty directory. It also generates the Gradle wrapper when a system gradle is on PATH, so the result is immediately buildable with gradle_build; if no gradle is installed the result says so, and gradle wrapper has to be run in that directory before any Gradle tool here will work (they all drive ./gradlew).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Human-readable app name. | |
| package | Yes | Application id/package, e.g. com.example.app. | |
| destination | Yes | Empty or new directory to create the project in. |