2021-10-02 14:27:42 +02:00
|
|
|
plugins {
|
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 {
|
2022-08-21 12:33:05 +02:00
|
|
|
compileSdkVersion 33
|
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
|
|
|
|
targetSdkVersion 33
|
2023-07-04 22:36:47 +02:00
|
|
|
versionCode 91
|
|
|
|
versionName '3.2.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
|
|
|
|
proguardFile 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
debug {
|
|
|
|
applicationIdSuffix '.debug'
|
|
|
|
versionNameSuffix '.DEBUG'
|
|
|
|
}
|
|
|
|
}
|
2021-01-16 21:37:56 +01:00
|
|
|
|
2022-08-21 12:33:05 +02:00
|
|
|
packagingOptions {
|
2023-01-22 13:45:29 +01:00
|
|
|
jniLibs {
|
|
|
|
excludes += ['/META-INF/androidx.*', '/META-INF/kotlin*', '/META-INF/com.*', '/META-INF/services/**', '/META-INF/com/**', '/kotlin/**', '/Debug*']
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
excludes += ['/META-INF/CHANGES', '/META-INF/DEPENDENCIES', '/META-INF/README.md', '/META-INF/androidx.*', '/META-INF/kotlin*', '/META-INF/com.*', '/META-INF/services/**', '/META-INF/com/**', '/kotlin/**', '/Debug*']
|
|
|
|
}
|
2022-08-21 12:33:05 +02:00
|
|
|
}
|
2017-11-04 16:09:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-05-05 21:44:49 +02:00
|
|
|
implementation 'com.google.android.material:material:1.9.0'
|
2023-05-20 16:58:11 +02:00
|
|
|
implementation 'com.google.android.exoplayer:exoplayer-ui:2.18.7'
|
|
|
|
implementation 'com.google.android.exoplayer:exoplayer-core:2.18.7'
|
|
|
|
implementation 'com.google.android.exoplayer:extension-okhttp:2.18.7'
|
2023-04-10 01:38:51 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
2023-03-14 20:32:57 +01:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.3.0'
|
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-03-09 10:38:42 +01:00
|
|
|
implementation 'org.jsoup:jsoup:1.15.4'
|
2022-08-21 12:33:05 +02:00
|
|
|
//noinspection GradleDependency
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
|
|
|
|
//noinspection GradleDependency
|
|
|
|
implementation 'com.squareup.picasso:picasso:2.8'
|
2023-03-24 22:55:38 +01:00
|
|
|
implementation 'jp.wasabeef:picasso-transformations:2.4.0'
|
2022-08-21 12:33:05 +02:00
|
|
|
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-07-03 23:03:22 +02:00
|
|
|
implementation 'com.github.woltapp:blurhash:f9589f03ee'
|
2017-11-04 16:09:25 +01:00
|
|
|
}
|