BoltAssist is a simple Android application built with Jetpack Compose. The default screen displays a greeting using the project's custom Material theme. The project is intended as a minimal template for experimenting with Compose.
- Android Studio: version 2024.1 (Koala) or newer. The project uses the Android Gradle Plugin
8.2.1and Kotlin1.9.22. - Android SDK: API level 34 installed. The module targets SDK 34 and requires a minimum SDK level of 30.
- Ensure
sdk.diris defined in alocal.propertiesfile or set theANDROID_HOMEenvironment variable so Gradle can locate your Android SDK.
The repository ships with the Gradle wrapper. From the project root you can assemble the APKs without opening Android Studio:
# Compile the debug variant
./gradlew assembleDebug
# Compile the release variant
./gradlew assembleReleaseTo install directly on a connected emulator or device you can run:
./gradlew installDebugThe resulting APKs are written to app/build/outputs/apk/.
Open the project in Android Studio and click Run on the app module. Android Studio will build and deploy the application to your selected emulator or device.
