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-09-02 21:40:14 +02:00
|
|
|
compileSdkVersion 34
|
2023-06-18 12:06:45 +02:00
|
|
|
buildToolsVersion '34.0.0'
|
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-10-12 21:17:08 +02:00
|
|
|
versionCode 100
|
|
|
|
versionName '3.4.4'
|
2023-06-27 20:05:51 +02:00
|
|
|
resConfigs 'en', 'es', 'de-rDE', '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*'
|
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-08-05 12:42:48 +02:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.3.1'
|
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-08-18 20:59:05 +02:00
|
|
|
implementation 'androidx.media3:media3-exoplayer:1.1.1'
|
|
|
|
implementation 'androidx.media3:media3-ui:1.1.1'
|
|
|
|
implementation 'androidx.media3:media3-datasource-okhttp:1.1.1'
|
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'
|
|
|
|
implementation 'com.github.QuadFlask:colorpicker:0.0.15'
|
|
|
|
implementation 'com.github.nuclearfog:ZoomView:1.0.4'
|
2023-04-02 19:15:01 +02:00
|
|
|
implementation 'com.github.nuclearfog:Tagger:2.4'
|
2022-08-21 12:33:05 +02:00
|
|
|
implementation 'com.github.nuclearfog:LinkAndScrollMovement:1.4.1'
|
|
|
|
implementation 'com.github.kyleduo:SwitchButton:2.0.3-SNAPSHOT'
|
2023-05-19 23:27:14 +02:00
|
|
|
implementation 'com.github.UnifiedPush:android-connector:2.1.1'
|
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-05 21:41:03 +02:00
|
|
|
}
|