plugins { id 'com.android.application' } android { compileSdkVersion 33 buildToolsVersion '34.0.0' namespace 'org.nuclearfog.twidda' defaultConfig { applicationId 'org.nuclearfog.twidda' minSdkVersion 21 targetSdkVersion 33 versionCode 93 versionName '3.2.6' resConfigs 'en', 'es', 'de-rDE', 'zh-rCN' } buildTypes { release { minifyEnabled true shrinkResources true debuggable false multiDexEnabled false proguardFile 'proguard-rules.pro' } debug { applicationIdSuffix '.debug' versionNameSuffix '.DEBUG' } } packagingOptions { 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*'] } } } dependencies { implementation 'com.google.android.material:material:1.9.0' implementation 'androidx.appcompat:appcompat:1.6.1' 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' implementation 'org.jsoup:jsoup:1.15.4' //noinspection GradleDependency 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' 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' 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' }