SetAsWallpaper/app/build.gradle
Michel Roux 3431519c1a
All checks were successful
apk / build (push) Successful in 1m26s
Small typos
2023-07-31 23:04:22 +02:00

33 lines
899 B
Groovy

apply plugin: 'com.android.application'
android {
namespace 'net.crystalyx.setaswallpaper'
compileSdk 33
defaultConfig {
applicationId "net.crystalyx.setaswallpaper"
minSdkVersion 5
targetSdkVersion 33
versionCode 11
versionName "3.4"
}
signingConfigs {
release {
if (System.env.STORE_FILE) {
storeFile file(System.env.STORE_FILE)
storePassword System.env.STORE_PASSWORD
keyAlias System.env.KEY_ALIAS
keyPassword System.env.KEY_PASSWORD
}
}
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
if (System.env.STORE_FILE) {
signingConfig signingConfigs.release
}
}
}
}