GMaps-WV/app/build.gradle

34 lines
761 B
Groovy
Raw Normal View History

2017-10-22 19:54:26 -04:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 33
2017-10-22 19:54:26 -04:00
defaultConfig {
applicationId "us.spotco.maps"
minSdkVersion 21
targetSdkVersion 32
versionCode 23
versionName "1.5"
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'
}
}
lint {
abortOnError false
}
2017-10-22 19:54:26 -04:00
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.5.0'
2017-10-22 19:54:26 -04:00
}