32 lines
814 B
Groovy
32 lines
814 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
buildToolsVersion "28.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId "fr.mobdev.blooddonation"
|
|
minSdkVersion 17
|
|
targetSdkVersion 28
|
|
versionCode = 14
|
|
versionName = "3.5"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':anymaps-base')
|
|
implementation project(':anymaps-osm')
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.preference:preference:1.0.0'
|
|
}
|