mirror of
https://github.com/woheller69/maps.git
synced 2025-06-28 12:19:55 +00:00
38 lines
952 B
Groovy
38 lines
952 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdk 34
|
|
dependenciesInfo {
|
|
// Disable including dependency metadata when building APKs
|
|
includeInApk = false
|
|
// Disable including dependency metadata when building Android App Bundles
|
|
includeInBundle = false
|
|
}
|
|
defaultConfig {
|
|
applicationId "us.spotco.maps"
|
|
minSdkVersion 21
|
|
targetSdk 34
|
|
versionCode 43
|
|
versionName "4.3"
|
|
}
|
|
buildTypes {
|
|
debug {
|
|
applicationIdSuffix ".debug"
|
|
minifyEnabled true
|
|
zipAlignEnabled true
|
|
}
|
|
release {
|
|
shrinkResources true
|
|
minifyEnabled true
|
|
zipAlignEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
disable 'MissingTranslation'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
}
|