2021-10-02 14:27:42 +02:00
|
|
|
plugins {
|
2023-09-22 18:52:51 +02:00
|
|
|
id 'org.jetbrains.kotlin.android' version '1.8.10' // FIX: duplicate classes error
|
2022-08-21 12:33:05 +02:00
|
|
|
id 'com.android.application'
|
2021-10-02 14:27:42 +02:00
|
|
|
}
|
2017-11-04 16:09:25 +01:00
|
|
|
|
|
|
|
android {
|
2023-12-14 23:17:04 +01:00
|
|
|
compileSdk 34
|
2023-01-22 13:45:29 +01:00
|
|
|
namespace 'org.nuclearfog.twidda'
|
2018-10-08 17:31:55 +02:00
|
|
|
|
2022-08-21 12:33:05 +02:00
|
|
|
defaultConfig {
|
|
|
|
applicationId 'org.nuclearfog.twidda'
|
|
|
|
minSdkVersion 21
|
2023-09-02 21:40:14 +02:00
|
|
|
targetSdkVersion 34
|
2023-12-14 23:17:04 +01:00
|
|
|
versionCode 105
|
|
|
|
versionName '3.5.2'
|
2023-11-18 21:33:01 +01:00
|
|
|
resConfigs 'en', 'es', 'de', 'zh-rCN'
|
2022-08-21 12:33:05 +02:00
|
|
|
}
|
2018-10-08 17:31:55 +02:00
|
|
|
|
2022-08-21 12:33:05 +02:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
|
|
|
debuggable false
|
|
|
|
multiDexEnabled false
|
2023-10-05 21:41:03 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2022-08-21 12:33:05 +02:00
|
|
|
}
|
|
|
|
debug {
|
|
|
|
applicationIdSuffix '.debug'
|
|
|
|
versionNameSuffix '.DEBUG'
|
|
|
|
}
|
|
|
|
}
|
2021-01-16 21:37:56 +01:00
|
|
|
|
2022-08-21 12:33:05 +02:00
|
|
|
packagingOptions {
|
2023-08-18 20:59:05 +02:00
|
|
|
exclude '/META-INF/CHANGES'
|
|
|
|
exclude '/META-INF/DEPENDENCIES'
|
|
|
|
exclude '/META-INF/README.md'
|
|
|
|
exclude '/META-INF/androidx.*'
|
|
|
|
exclude '/META-INF/kotlin*'
|
|
|
|
exclude '/META-INF/com.*'
|
|
|
|
exclude '/META-INF/services/**'
|
|
|
|
exclude '/META-INF/com/**'
|
2023-09-22 18:52:51 +02:00
|
|
|
exclude '/org/joda/**'
|
2023-08-18 20:59:05 +02:00
|
|
|
exclude '/kotlin/**'
|
|
|
|
exclude '/Debug*'
|
2023-12-14 23:17:04 +01:00
|
|
|
exclude '/kotlin-tooling-metadata.json'
|
2022-08-21 12:33:05 +02:00
|
|
|
}
|
2017-11-04 16:09:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-04-10 01:38:51 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
2023-10-23 13:43:30 +02:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.3.2'
|
2022-08-21 12:33:05 +02:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2023-11-26 10:00:07 +01:00
|
|
|
implementation 'androidx.media3:media3-exoplayer:1.2.0'
|
|
|
|
implementation 'androidx.media3:media3-ui:1.2.0'
|
|
|
|
implementation 'androidx.media3:media3-datasource-okhttp:1.2.0'
|
2023-09-02 21:40:14 +02:00
|
|
|
implementation 'androidx.viewpager2:viewpager2:1.0.0'
|
2022-08-21 12:33:05 +02:00
|
|
|
//noinspection GradleDependency
|
2023-07-14 22:28:21 +02:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
|
2022-08-21 12:33:05 +02:00
|
|
|
//noinspection GradleDependency
|
|
|
|
implementation 'com.squareup.picasso:picasso:2.8'
|
2023-12-02 22:13:38 +01:00
|
|
|
implementation 'com.github.duanhong169:colorpicker:1.1.6'
|
|
|
|
implementation 'com.github.duanhong169:checkerboarddrawable:1.0.2'
|
2023-11-21 22:19:10 +01:00
|
|
|
implementation 'com.kyleduo.switchbutton:library:2.1.0'
|
2023-05-19 23:27:14 +02:00
|
|
|
implementation 'com.github.UnifiedPush:android-connector:2.1.1'
|
2023-12-03 13:40:28 +01:00
|
|
|
//noinspection GradleDependency
|
2023-10-05 23:26:52 +02:00
|
|
|
implementation 'com.google.android.material:material:1.9.0'
|
2023-07-21 11:35:23 +02:00
|
|
|
implementation 'jp.wasabeef:picasso-transformations:2.4.0'
|
2023-09-22 18:52:51 +02:00
|
|
|
implementation 'net.danlew:android.joda:2.12.5'
|
2023-09-02 21:40:14 +02:00
|
|
|
implementation 'org.jsoup:jsoup:1.16.1'
|
2023-10-25 13:21:15 +02:00
|
|
|
}
|