54 lines
1.5 KiB
Groovy
54 lines
1.5 KiB
Groovy
/**
|
|
This file is part of TinyWeatherForecastGermany.
|
|
|
|
Copyright (c) 2020 Pawel Dube
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
**/
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion '28.0.3'
|
|
|
|
defaultConfig {
|
|
applicationId "de.kaffeemitkoffein.tinyweatherforecastgermany"
|
|
minSdkVersion 19
|
|
targetSdkVersion 28
|
|
versionCode 17
|
|
versionName "0.53.0"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
userdebug {
|
|
initWith release
|
|
versionNameSuffix "-userdebug_"+new Date().format("yyyyMMDD")
|
|
}
|
|
debug {
|
|
initWith release
|
|
signingConfig signingConfigs.debug
|
|
versionNameSuffix "-debug_"+new Date().format("yyyyMMDD-HHmm00ss")
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
}
|