taotoolbox/wear_tao/build.gradle

55 lines
1.5 KiB
Groovy
Raw Normal View History

2021-05-09 17:23:52 +00:00
plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
2022-07-10 14:41:29 +00:00
compileSdkVersion 31
2021-05-10 06:14:46 +00:00
buildToolsVersion "30.0.3"
2021-05-09 17:23:52 +00:00
defaultConfig {
applicationId "fr.oupson.wear_tao"
minSdkVersion 26
2022-07-10 14:41:29 +00:00
targetSdkVersion 31
2021-05-09 17:23:52 +00:00
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
2022-07-10 14:41:29 +00:00
2021-05-09 17:23:52 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2022-07-10 14:41:29 +00:00
2021-05-09 17:23:52 +00:00
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
2022-07-10 14:41:29 +00:00
implementation 'androidx.core:core-ktx:1.8.0'
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.wear:wear:1.2.0'
2021-05-09 17:23:52 +00:00
implementation "androidx.wear:wear-tiles:1.0.0-alpha01"
debugImplementation "androidx.wear:wear-tiles-renderer:1.0.0-alpha01"
2022-07-10 14:41:29 +00:00
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-guava:1.6.0'
2021-05-09 17:23:52 +00:00
implementation project(":common")
2022-07-10 14:41:29 +00:00
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
2021-05-09 17:23:52 +00:00
}