sharewithtitle/ShareWithTitle/build.gradle
Renovate Bot 197ee9ea3f
All checks were successful
apk / build (push) Successful in 7m2s
chore(deps): update dependency org.jsoup:jsoup to v1.18.1
2024-07-11 06:42:22 +00:00

41 lines
1.1 KiB
Groovy

apply plugin: 'com.android.application'
android {
namespace 'net.crystalyx.sharewithtitle'
compileSdk 34
defaultConfig {
applicationId "net.crystalyx.sharewithtitle"
minSdkVersion 11
targetSdkVersion 34
versionCode 9
versionName "1.7"
}
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
}
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
if (System.env.STORE_FILE) {
signingConfig signingConfigs.release
}
}
}
}
dependencies {
implementation 'org.jsoup:jsoup:1.18.1'
}