mirror of
https://github.com/woheller69/maps.git
synced 2025-06-28 12:19:55 +00:00
31 lines
668 B
Groovy
31 lines
668 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdk 34
|
|
defaultConfig {
|
|
applicationId "us.spotco.maps"
|
|
minSdkVersion 21
|
|
targetSdk 34
|
|
versionCode 37
|
|
versionName "1.12"
|
|
}
|
|
buildTypes {
|
|
debug {
|
|
applicationIdSuffix ".debug"
|
|
minifyEnabled true
|
|
zipAlignEnabled true
|
|
}
|
|
release {
|
|
shrinkResources true
|
|
minifyEnabled true
|
|
zipAlignEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
lint {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
}
|