sharewithtitle/ShareWithTitle/build.gradle
Michel Roux eb8a5bfd62
All checks were successful
apk / build (push) Successful in 1m35s
fix: 🩹 remove useless import
2024-03-01 21:15:49 +01:00

37 lines
962 B
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
}
}
}
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.17.2'
}