2023-07-30 19:04:42 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace 'net.crystalyx.sharewithtitle'
|
|
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "net.crystalyx.sharewithtitle"
|
|
|
|
minSdkVersion 11
|
|
|
|
targetSdkVersion 33
|
2023-07-31 06:49:45 +00:00
|
|
|
versionCode 6
|
|
|
|
versionName "1.5"
|
2013-07-20 20:07:19 +00:00
|
|
|
}
|
2023-07-30 19:04:42 +00:00
|
|
|
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 {
|
2023-07-30 19:30:21 +00:00
|
|
|
minifyEnabled false
|
2023-07-30 19:04:42 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
if (System.env.STORE_FILE) {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
|
|
|
}
|
2013-07-20 20:07:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-12-29 06:53:12 +00:00
|
|
|
implementation 'org.jsoup:jsoup:1.17.2'
|
2013-07-20 20:07:19 +00:00
|
|
|
}
|