GMaps-WV/app/build.gradle
woheller69 f05dcd1ef8 V4.3
2025-06-27 06:59:27 +02:00

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 {
}