1
0
mirror of https://codeberg.org/Starfish/Imagepipe.git synced 2025-10-06 03:02:39 +02:00
Files
Imagepipe/app/build.gradle
2025-07-15 20:59:06 +02:00

72 lines
1.9 KiB
Groovy

/**
This file is part of Imagepipe.
Copyright (c) 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025 Pawel Dube
Imagepipe 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.
Imagepipe 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 Imagepipe. If not, see <http://www.gnu.org/licenses/>.
**/
apply plugin: 'com.android.application'
dependencies {
}
android {
// defaultPublishConfig "release"
compileSdkVersion 33
// buildToolsVersion '29.0.3'
// buildToolsVersion '30.0.3'
buildToolsVersion '33.0.1'
namespace 'de.kaffeemitkoffein.imagepipe'
defaultConfig {
minSdkVersion 14
targetSdkVersion 33
versionCode 52
versionName "0.73"
}
dependenciesInfo {
includeInApk = false
includeInBundle = false
}
buildTypes {
release {
minifyEnabled true
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
userdebug {
initWith release
minifyEnabled false
shrinkResources false
versionNameSuffix "-userdebug_"+new Date().format("yyyyMMDD")
}
debug {
initWith release
minifyEnabled false
shrinkResources false
signingConfig signingConfigs.debug
versionNameSuffix "-debug_"+new Date().format("yyyyMMDD-HHmm00ss")
}
}
dependencies {
}
}