# Android Kotlin Demo This is a minimal Android project written in Kotlin and built with Gradle. It can be packaged into an APK once you have the Android SDK and Gradle installed. ## Setup 1. **Android SDK** - Ensure you have the Android SDK installed and `sdk.dir` set in `local.properties`. 2. **Gradle** - Install Gradle on your system (https://gradle.org/install). - Run `gradle wrapper` in the project root to generate the Gradle wrapper (`gradlew`). 3. **Build APK** - Use the wrapper or Gradle to assemble a debug APK: ```sh ./gradlew assembleDebug ``` on Windows use `gradlew.bat`. - The APK will be located at `app/build/outputs/apk/debug/app-debug.apk`. ## Project Structure - `app/`: Android application module - `src/main/java/com/example/myapp/MainActivity.kt` – main activity - `src/main/res/layout/activity_main.xml` – layout file - `build.gradle` – module build configuration - `build.gradle` – top-level build script - `settings.gradle` – includes `app` module - `gradlew`/`gradlew.bat` – placeholder wrapper scripts Feel free to expand this demo with your own features.