plugins { id 'com.android.application' id 'kotlin-android' } android { compileSdkVersion 32 buildToolsVersion "30.0.3" defaultConfig { applicationId "fr.oupson.taotoolbox" minSdkVersion 21 targetSdkVersion 32 versionCode 1 versionName "0.0.4" 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 { 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' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.2' implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.2' implementation project(":common") implementation 'org.osmdroid:osmdroid-android:6.1.13' }