taotoolbox/app/build.gradle

60 lines
1.8 KiB
Groovy
Raw Permalink 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 32
2021-05-10 06:14:46 +00:00
buildToolsVersion "30.0.3"
2021-05-09 17:23:52 +00:00
defaultConfig {
applicationId "fr.oupson.taotoolbox"
minSdkVersion 21
2022-07-10 14:41:29 +00:00
targetSdkVersion 32
2021-05-09 17:23:52 +00:00
versionCode 1
2022-07-10 14:41:29 +00:00
versionName "0.0.4"
2021-05-09 17:23:52 +00:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
// Enables code shrinking, obfuscation, and optimization for only
// your project's release build type.
minifyEnabled true
// Enables resource shrinking, which is performed by the
// Android Gradle plugin.
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
buildFeatures {
viewBinding true
}
}
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.preference:preference-ktx:1.2.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
2022-07-10 14:41:29 +00:00
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.2'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.2'
2021-05-09 17:23:52 +00:00
implementation project(":common")
2022-07-10 14:41:29 +00:00
implementation 'org.osmdroid:osmdroid-android:6.1.13'
2021-05-09 17:23:52 +00:00
}