taotoolbox/wear_tao/build.gradle

50 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 {
compileSdkVersion 30
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
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
2021-12-25 20:29:29 +00:00
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0'
2021-05-09 17:23:52 +00:00
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-guava:1.4.2'
2021-12-25 20:29:29 +00:00
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
2021-05-09 17:23:52 +00:00
testImplementation 'junit:junit:4.13.2'
2021-12-25 20:29:29 +00:00
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
implementation 'androidx.wear:wear:1.1.0'
implementation "androidx.wear:wear-tiles:1.0.0-alpha01"
debugImplementation "androidx.wear:wear-tiles-renderer:1.0.0-alpha01"
implementation project(":common")
}