SetAsWallpaper/app/build.gradle

33 lines
899 B
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
2021-08-08 20:58:08 +00:00
android {
namespace 'net.crystalyx.setaswallpaper'
2023-07-31 21:04:22 +00:00
compileSdk 33
2021-08-08 20:58:08 +00:00
defaultConfig {
applicationId "net.crystalyx.setaswallpaper"
minSdkVersion 5
2023-03-22 10:13:10 +00:00
targetSdkVersion 33
versionCode 11
versionName "3.4"
2021-08-08 20:58:08 +00:00
}
signingConfigs {
2021-08-08 20:58:08 +00:00
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
}
2021-08-08 20:58:08 +00:00
}
}
2023-06-27 11:05:06 +00:00
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
if (System.env.STORE_FILE) {
signingConfig signingConfigs.release
}
}
}
2023-03-22 10:13:10 +00:00
}