2015-04-16 15:58:19 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2019-03-29 15:37:17 +00:00
|
|
|
|
|
|
|
compileSdkVersion 28
|
|
|
|
buildToolsVersion "28.0.3"
|
|
|
|
|
2015-04-16 15:58:19 +00:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "fr.mobdev.blooddonation"
|
2017-08-23 12:45:30 +00:00
|
|
|
minSdkVersion 17
|
2019-03-29 15:37:17 +00:00
|
|
|
targetSdkVersion 28
|
2019-03-29 16:56:56 +00:00
|
|
|
versionCode = 14
|
|
|
|
versionName = "3.5"
|
2015-04-16 15:58:19 +00:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
2017-08-23 12:45:30 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2015-04-16 15:58:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-03-29 15:37:17 +00:00
|
|
|
implementation project(':anymaps-base')
|
|
|
|
implementation project(':anymaps-osm')
|
2017-08-23 12:45:30 +00:00
|
|
|
|
2019-03-29 15:51:14 +00:00
|
|
|
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'
|
2015-04-16 15:58:19 +00:00
|
|
|
}
|