| plugins { |
| alias(libs.plugins.android.application) |
| alias(libs.plugins.kotlin.compose) |
| } |
| |
| android { |
| namespace 'template.test.in' |
| compileSdk { |
| version = release(36) |
| } |
| |
| defaultConfig { |
| applicationId "template.test.in" |
| minSdk 26 |
| targetSdk 36 |
| versionCode 1 |
| versionName "1.0" |
| |
| } |
| |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
| } |
| } |
| compileOptions { |
| sourceCompatibility JavaVersion.VERSION_11 |
| targetCompatibility JavaVersion.VERSION_11 |
| } |
| useLibrary('wear-sdk') |
| buildFeatures { |
| compose true |
| } |
| } |
| |
| dependencies { |
| implementation libs.play.services.wearable |
| implementation platform(libs.compose.bom) |
| implementation libs.ui |
| implementation libs.ui.graphics |
| implementation libs.ui.tooling.preview |
| implementation libs.compose.material |
| implementation libs.compose.foundation |
| implementation libs.wear.tooling.preview |
| implementation libs.activity.compose |
| implementation libs.core.splashscreen |
| androidTestImplementation platform(libs.compose.bom) |
| androidTestImplementation libs.ui.test.junit4 |
| debugImplementation libs.ui.tooling |
| debugImplementation libs.ui.test.manifest |
| } |