2017-10-22 19:54:26 -04:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2022-08-21 19:11:55 -04:00
|
|
|
compileSdkVersion 33
|
2017-10-22 19:54:26 -04:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "us.spotco.maps"
|
|
|
|
minSdkVersion 21
|
2022-08-21 19:11:55 -04:00
|
|
|
targetSdkVersion 32
|
|
|
|
versionCode 23
|
2021-07-21 12:42:47 -04:00
|
|
|
versionName "1.5"
|
2022-08-21 19:11:55 -04:00
|
|
|
resConfigs 'en'
|
2017-10-22 19:54:26 -04:00
|
|
|
}
|
|
|
|
buildTypes {
|
2017-12-16 15:16:47 -05:00
|
|
|
debug {
|
2017-12-27 18:46:12 -05:00
|
|
|
applicationIdSuffix ".debug"
|
2017-12-16 15:16:47 -05:00
|
|
|
minifyEnabled true
|
2017-12-27 18:46:12 -05:00
|
|
|
zipAlignEnabled true
|
2017-12-16 15:16:47 -05:00
|
|
|
}
|
2017-10-22 19:54:26 -04:00
|
|
|
release {
|
2017-12-27 18:46:12 -05:00
|
|
|
shrinkResources true
|
2017-12-16 15:16:47 -05:00
|
|
|
minifyEnabled true
|
2017-12-16 15:54:18 -05:00
|
|
|
zipAlignEnabled true
|
2017-10-22 19:54:26 -04:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2022-08-21 19:11:55 -04:00
|
|
|
lint {
|
2021-09-20 16:46:00 -04:00
|
|
|
abortOnError false
|
|
|
|
}
|
2017-10-22 19:54:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-08-21 19:11:55 -04:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.5.0'
|
2017-10-22 19:54:26 -04:00
|
|
|
}
|