2023-07-30 21:04:42 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace 'net.crystalyx.sharewithtitle'
|
2024-03-01 21:15:49 +01:00
|
|
|
compileSdk 34
|
2023-07-30 21:04:42 +02:00
|
|
|
defaultConfig {
|
2025-02-08 15:30:47 +01:00
|
|
|
applicationId = "net.crystalyx.sharewithtitle"
|
|
|
|
minSdkVersion = 11
|
|
|
|
targetSdkVersion = 34
|
2025-02-08 15:31:20 +01:00
|
|
|
versionCode = 10
|
|
|
|
versionName = "1.8"
|
2013-07-20 13:07:19 -07:00
|
|
|
}
|
2023-07-30 21:04:42 +02:00
|
|
|
signingConfigs {
|
|
|
|
release {
|
|
|
|
if (System.env.STORE_FILE) {
|
2025-02-08 15:30:47 +01:00
|
|
|
storeFile = file(System.env.STORE_FILE)
|
|
|
|
storePassword = System.env.STORE_PASSWORD
|
|
|
|
keyAlias = System.env.KEY_ALIAS
|
|
|
|
keyPassword = System.env.KEY_PASSWORD
|
2023-07-30 21:04:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-07-09 16:33:19 +02:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
|
|
}
|
2023-07-30 21:04:42 +02:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2025-02-08 15:30:47 +01:00
|
|
|
minifyEnabled = true
|
2023-07-30 21:04:42 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
if (System.env.STORE_FILE) {
|
2025-02-08 15:30:47 +01:00
|
|
|
signingConfig = signingConfigs.release
|
2023-07-30 21:04:42 +02:00
|
|
|
}
|
|
|
|
}
|
2013-07-20 13:07:19 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-12-02 06:56:04 +00:00
|
|
|
implementation 'org.jsoup:jsoup:1.18.3'
|
2013-07-20 13:07:19 -07:00
|
|
|
}
|