Shitter-android-app/app/build.gradle

65 lines
2.1 KiB
Groovy
Raw Normal View History

plugins {
id 'com.android.application'
}
2017-11-04 16:09:25 +01:00
android {
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
defaultConfig {
applicationId 'org.nuclearfog.twidda'
minSdkVersion 21
targetSdkVersion 33
2023-07-14 20:25:46 +02:00
versionCode 93
versionName '3.2.6'
2023-06-27 20:05:51 +02:00
resConfigs 'en', 'es', 'de-rDE', 'zh-rCN'
}
2018-10-08 17:31:55 +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
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*']
}
}
2017-11-04 16:09:25 +01:00
}
dependencies {
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
2023-03-14 20:32:57 +01:00
implementation 'androidx.recyclerview:recyclerview:1.3.0'
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'
//noinspection GradleDependency
2023-07-14 22:28:21 +02:00
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
//noinspection GradleDependency
implementation 'com.squareup.picasso:picasso:2.8'
implementation 'jp.wasabeef:picasso-transformations:2.4.0'
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'
implementation 'com.github.nuclearfog:LinkAndScrollMovement:1.4.1'
implementation 'com.github.kyleduo:SwitchButton:2.0.3-SNAPSHOT'
implementation 'com.github.UnifiedPush:android-connector:2.1.1'
2023-07-14 22:28:21 +02:00
implementation 'androidx.media3:media3-exoplayer:1.1.0'
implementation 'androidx.media3:media3-ui:1.1.0'
implementation 'androidx.media3:media3-datasource-okhttp:1.1.0'
2017-11-04 16:09:25 +01:00
}