plugins { id("com.android.application") id("org.jetbrains.kotlin.android") id("org.jetbrains.kotlin.plugin.compose") } android { namespace = "bums.lunatic.launcher" compileSdk = 36 defaultConfig { applicationId = "bums.lunatic.launcher" minSdk = 30 targetSdk = 36 versionCode = 1 versionName = "1.0" } buildTypes { release { isMinifyEnabled = false proguardFiles( getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" ) } } compileOptions { sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 } kotlinOptions { jvmTarget = "11" } buildFeatures { compose = true } signingConfigs { getByName("debug") { storeFile = file("./bs_debug.keystore") storePassword = "android" keyAlias = "androiddebugkey" keyPassword = "android" } } } dependencies { implementation("com.google.android.gms:play-services-wearable:19.0.0") implementation(platform("androidx.compose:compose-bom:2024.09.00")) implementation("androidx.compose.ui:ui") implementation("androidx.compose.ui:ui-graphics") implementation("androidx.compose.ui:ui-tooling-preview") implementation("androidx.wear.compose:compose-material:1.2.1") implementation("androidx.wear.compose:compose-foundation:1.2.1") implementation("androidx.wear:wear-tooling-preview:1.0.0") implementation("androidx.activity:activity-compose:1.12.4") implementation("androidx.core:core-splashscreen:1.0.1") implementation("androidx.wear.tiles:tiles:1.4.0") implementation("androidx.wear.tiles:tiles-material:1.4.0") implementation("androidx.wear.tiles:tiles-tooling-preview:1.4.0") implementation("com.google.android.horologist:horologist-compose-tools:0.6.17") implementation("com.google.android.horologist:horologist-tiles:0.6.17") implementation("androidx.wear.watchface:watchface-complications-data-source-ktx:1.2.1") androidTestImplementation(platform("androidx.compose:compose-bom:2024.09.00")) androidTestImplementation("androidx.compose.ui:ui-test-junit4") debugImplementation("androidx.compose.ui:ui-tooling") debugImplementation("androidx.compose.ui:ui-test-manifest") debugImplementation("androidx.wear.tiles:tiles-tooling:1.4.0") }