mirror of
https://github.com/woheller69/maps.git
synced 2025-06-28 12:19:55 +00:00
33 lines
761 B
Groovy
33 lines
761 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 33
|
|
defaultConfig {
|
|
applicationId "us.spotco.maps"
|
|
minSdkVersion 21
|
|
targetSdkVersion 32
|
|
versionCode 23
|
|
versionName "1.5"
|
|
resConfigs 'en'
|
|
}
|
|
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 {
|
|
implementation 'androidx.appcompat:appcompat:1.5.0'
|
|
}
|