sharewithtitle/ShareWithTitle/build.gradle
Michel Roux e01d8c1813
Some checks failed
apk / build (push) Failing after 33s
Readd my Play Store version
2023-07-30 21:04:42 +02:00

37 lines
961 B
Groovy

apply plugin: 'com.android.application'
android {
namespace 'net.crystalyx.sharewithtitle'
compileSdk 33
defaultConfig {
applicationId "net.crystalyx.sharewithtitle"
minSdkVersion 11
targetSdkVersion 33
versionCode 4
versionName "1.3"
}
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
}
}
}
}
dependencies {
implementation 'org.jsoup:jsoup:1.16.1'
}