2020-12-31 17:28:34 +01:00
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
2022-12-17 18:02:01 +01:00
|
|
|
import org.jmailen.gradle.kotlinter.tasks.LintTask
|
2020-12-31 17:28:34 +01:00
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("com.android.application")
|
|
|
|
id("com.mikepenz.aboutlibraries.plugin")
|
|
|
|
kotlin("android")
|
|
|
|
kotlin("plugin.serialization")
|
|
|
|
id("com.github.zellius.shortcut-helper")
|
|
|
|
}
|
|
|
|
|
2020-12-31 17:32:18 +01:00
|
|
|
if (gradle.startParameter.taskRequests.toString().contains("Standard")) {
|
2022-03-04 15:58:31 +01:00
|
|
|
apply<com.google.gms.googleservices.GoogleServicesPlugin>()
|
2020-12-31 17:32:18 +01:00
|
|
|
}
|
|
|
|
|
2020-12-31 17:28:34 +01:00
|
|
|
shortcutHelper.setFilePath("./shortcuts.xml")
|
|
|
|
|
2022-08-28 15:45:33 +02:00
|
|
|
val SUPPORTED_ABIS = setOf("armeabi-v7a", "arm64-v8a", "x86", "x86_64")
|
2021-06-01 15:55:03 +02:00
|
|
|
|
2020-12-31 17:28:34 +01:00
|
|
|
android {
|
2022-07-02 19:08:22 +02:00
|
|
|
namespace = "eu.kanade.tachiyomi"
|
2020-12-31 17:28:34 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId = "eu.kanade.tachiyomi"
|
2023-01-15 00:27:36 +01:00
|
|
|
versionCode = 94
|
2023-01-07 18:09:27 +01:00
|
|
|
versionName = "0.14.3"
|
2020-12-31 17:28:34 +01:00
|
|
|
|
|
|
|
buildConfigField("String", "COMMIT_COUNT", "\"${getCommitCount()}\"")
|
|
|
|
buildConfigField("String", "COMMIT_SHA", "\"${getGitSha()}\"")
|
|
|
|
buildConfigField("String", "BUILD_TIME", "\"${getBuildTime()}\"")
|
|
|
|
buildConfigField("boolean", "INCLUDE_UPDATER", "false")
|
2021-10-09 16:28:43 +02:00
|
|
|
buildConfigField("boolean", "PREVIEW", "false")
|
2020-12-31 17:28:34 +01:00
|
|
|
|
2021-01-17 17:09:29 +01:00
|
|
|
// Please disable ACRA or use your own instance in forked versions of the project
|
|
|
|
buildConfigField("String", "ACRA_URI", "\"https://tachiyomi.kanade.eu/crash_report\"")
|
|
|
|
|
2020-12-31 17:28:34 +01:00
|
|
|
ndk {
|
2021-06-01 15:55:03 +02:00
|
|
|
abiFilters += SUPPORTED_ABIS
|
2020-12-31 17:28:34 +01:00
|
|
|
}
|
2021-11-07 15:20:13 +01:00
|
|
|
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
2020-12-31 17:28:34 +01:00
|
|
|
}
|
|
|
|
|
2021-06-01 15:55:03 +02:00
|
|
|
splits {
|
|
|
|
abi {
|
2021-08-06 21:38:16 +02:00
|
|
|
isEnable = true
|
2021-06-01 15:55:03 +02:00
|
|
|
reset()
|
|
|
|
include(*SUPPORTED_ABIS.toTypedArray())
|
|
|
|
isUniversalApk = true
|
|
|
|
}
|
2020-12-31 17:28:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
named("debug") {
|
|
|
|
versionNameSuffix = "-${getCommitCount()}"
|
|
|
|
applicationIdSuffix = ".debug"
|
2022-11-03 14:46:53 +01:00
|
|
|
isPseudoLocalesEnabled = true
|
2020-12-31 17:28:34 +01:00
|
|
|
}
|
|
|
|
named("release") {
|
2021-05-22 20:47:40 +02:00
|
|
|
isShrinkResources = true
|
|
|
|
isMinifyEnabled = true
|
|
|
|
proguardFiles("proguard-android-optimize.txt", "proguard-rules.pro")
|
2020-12-31 17:28:34 +01:00
|
|
|
}
|
2021-10-09 16:28:43 +02:00
|
|
|
create("preview") {
|
|
|
|
initWith(getByName("release"))
|
|
|
|
buildConfigField("boolean", "PREVIEW", "true")
|
|
|
|
|
|
|
|
val debugType = getByName("debug")
|
|
|
|
signingConfig = debugType.signingConfig
|
|
|
|
versionNameSuffix = debugType.versionNameSuffix
|
|
|
|
applicationIdSuffix = debugType.applicationIdSuffix
|
2022-09-10 04:29:40 +02:00
|
|
|
matchingFallbacks.add("release")
|
2021-10-09 16:28:43 +02:00
|
|
|
}
|
2022-10-04 15:22:55 +02:00
|
|
|
create("benchmark") {
|
|
|
|
initWith(getByName("release"))
|
|
|
|
|
|
|
|
signingConfig = signingConfigs.getByName("debug")
|
|
|
|
matchingFallbacks.add("release")
|
|
|
|
isDebuggable = false
|
|
|
|
versionNameSuffix = "-benchmark"
|
|
|
|
applicationIdSuffix = ".benchmark"
|
|
|
|
}
|
2020-12-31 17:28:34 +01:00
|
|
|
}
|
|
|
|
|
2021-05-22 20:47:40 +02:00
|
|
|
sourceSets {
|
2021-10-09 16:28:43 +02:00
|
|
|
getByName("preview").res.srcDirs("src/debug/res")
|
2022-10-04 15:22:55 +02:00
|
|
|
getByName("benchmark").res.srcDirs("src/debug/res")
|
2021-05-22 20:47:40 +02:00
|
|
|
}
|
|
|
|
|
2021-08-23 00:05:18 +02:00
|
|
|
flavorDimensions.add("default")
|
2020-12-31 17:28:34 +01:00
|
|
|
|
|
|
|
productFlavors {
|
|
|
|
create("standard") {
|
|
|
|
buildConfigField("boolean", "INCLUDE_UPDATER", "true")
|
|
|
|
dimension = "default"
|
|
|
|
}
|
|
|
|
create("dev") {
|
2022-11-03 14:47:27 +01:00
|
|
|
// Include pseudolocales: https://developer.android.com/guide/topics/resources/pseudolocales
|
|
|
|
resourceConfigurations.addAll(listOf("en", "en_XA", "ar_XB", "xxhdpi"))
|
2020-12-31 17:28:34 +01:00
|
|
|
dimension = "default"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
packagingOptions {
|
2021-08-23 00:05:18 +02:00
|
|
|
resources.excludes.addAll(listOf(
|
|
|
|
"META-INF/DEPENDENCIES",
|
|
|
|
"LICENSE.txt",
|
|
|
|
"META-INF/LICENSE",
|
|
|
|
"META-INF/LICENSE.txt",
|
2021-10-16 16:21:25 +02:00
|
|
|
"META-INF/README.md",
|
2021-08-23 00:05:18 +02:00
|
|
|
"META-INF/NOTICE",
|
|
|
|
"META-INF/*.kotlin_module",
|
|
|
|
))
|
2020-12-31 17:28:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependenciesInfo {
|
|
|
|
includeInApk = false
|
|
|
|
}
|
|
|
|
|
2021-06-01 15:55:03 +02:00
|
|
|
buildFeatures {
|
|
|
|
viewBinding = true
|
2022-04-22 23:29:24 +02:00
|
|
|
compose = true
|
2021-11-07 15:20:13 +01:00
|
|
|
|
|
|
|
// Disable some unused things
|
|
|
|
aidl = false
|
|
|
|
renderScript = false
|
|
|
|
shaders = false
|
2021-06-01 15:55:03 +02:00
|
|
|
}
|
|
|
|
|
2021-07-28 21:08:04 +02:00
|
|
|
lint {
|
2022-01-26 04:49:50 +01:00
|
|
|
abortOnError = false
|
|
|
|
checkReleaseBuilds = false
|
2020-12-31 17:28:34 +01:00
|
|
|
}
|
|
|
|
|
2022-04-22 23:29:24 +02:00
|
|
|
composeOptions {
|
2022-06-30 04:45:11 +02:00
|
|
|
kotlinCompilerExtensionVersion = compose.versions.compiler.get()
|
2022-04-22 23:29:24 +02:00
|
|
|
}
|
2020-12-31 17:28:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-09-10 15:58:45 +02:00
|
|
|
implementation(project(":i18n"))
|
2022-09-16 00:12:27 +02:00
|
|
|
implementation(project(":core"))
|
|
|
|
implementation(project(":source-api"))
|
2023-01-21 16:37:07 +01:00
|
|
|
implementation(project(":data"))
|
2023-01-22 16:12:29 +01:00
|
|
|
implementation(project(":domain"))
|
2023-01-26 23:53:24 +01:00
|
|
|
implementation(project(":presentation-core"))
|
|
|
|
implementation(project(":presentation-widget"))
|
2022-09-10 15:58:45 +02:00
|
|
|
|
2022-04-24 16:22:22 +02:00
|
|
|
// Compose
|
2022-10-27 00:12:32 +02:00
|
|
|
implementation(platform(compose.bom))
|
2022-04-24 16:22:22 +02:00
|
|
|
implementation(compose.activity)
|
2022-04-22 23:29:24 +02:00
|
|
|
implementation(compose.foundation)
|
|
|
|
implementation(compose.material3.core)
|
2022-11-11 21:02:45 +01:00
|
|
|
implementation(compose.material.core)
|
2022-04-23 18:05:00 +02:00
|
|
|
implementation(compose.material.icons)
|
2022-04-22 23:29:24 +02:00
|
|
|
implementation(compose.animation)
|
2022-06-25 17:03:48 +02:00
|
|
|
implementation(compose.animation.graphics)
|
2022-04-22 23:29:24 +02:00
|
|
|
implementation(compose.ui.tooling)
|
2022-05-24 00:03:46 +02:00
|
|
|
implementation(compose.ui.util)
|
2022-04-24 16:22:22 +02:00
|
|
|
implementation(compose.accompanist.webview)
|
2022-06-25 17:03:48 +02:00
|
|
|
implementation(compose.accompanist.flowlayout)
|
2022-10-15 17:38:01 +02:00
|
|
|
implementation(compose.accompanist.permissions)
|
2022-12-02 05:08:04 +01:00
|
|
|
implementation(compose.accompanist.themeadapter)
|
2022-12-09 17:20:13 +01:00
|
|
|
implementation(compose.accompanist.systemuicontroller)
|
2022-04-22 23:29:24 +02:00
|
|
|
|
|
|
|
implementation(androidx.paging.runtime)
|
|
|
|
implementation(androidx.paging.compose)
|
|
|
|
|
2022-07-03 16:17:41 +02:00
|
|
|
implementation(libs.bundles.sqlite)
|
2022-04-22 23:29:24 +02:00
|
|
|
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(kotlinx.reflect)
|
2022-10-31 00:38:18 +01:00
|
|
|
|
|
|
|
implementation(platform(kotlinx.coroutines.bom))
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(kotlinx.bundles.coroutines)
|
2021-07-04 18:16:12 +02:00
|
|
|
|
2020-12-31 17:28:34 +01:00
|
|
|
// AndroidX libraries
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(androidx.annotation)
|
|
|
|
implementation(androidx.appcompat)
|
|
|
|
implementation(androidx.biometricktx)
|
|
|
|
implementation(androidx.constraintlayout)
|
|
|
|
implementation(androidx.coordinatorlayout)
|
|
|
|
implementation(androidx.corektx)
|
|
|
|
implementation(androidx.splashscreen)
|
|
|
|
implementation(androidx.recyclerview)
|
|
|
|
implementation(androidx.viewpager)
|
2022-10-04 15:22:55 +02:00
|
|
|
implementation(androidx.profileinstaller)
|
2022-03-04 15:58:31 +01:00
|
|
|
|
|
|
|
implementation(androidx.bundles.lifecycle)
|
2020-12-31 17:28:34 +01:00
|
|
|
|
|
|
|
// Job scheduling
|
2022-04-11 14:56:22 +02:00
|
|
|
implementation(androidx.bundles.workmanager)
|
2020-12-31 17:28:34 +01:00
|
|
|
|
2021-08-07 16:50:50 +02:00
|
|
|
// RX
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(libs.bundles.reactivex)
|
|
|
|
implementation(libs.flowreactivenetwork)
|
2020-12-31 17:28:34 +01:00
|
|
|
|
|
|
|
// Network client
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(libs.bundles.okhttp)
|
|
|
|
implementation(libs.okio)
|
2020-12-31 17:28:34 +01:00
|
|
|
|
|
|
|
// TLS 1.3 support for Android < 10
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(libs.conscrypt.android)
|
2020-12-31 17:28:34 +01:00
|
|
|
|
2021-08-07 16:50:50 +02:00
|
|
|
// Data serialization (JSON, protobuf)
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(kotlinx.bundles.serialization)
|
2021-09-06 17:54:00 +02:00
|
|
|
|
2021-08-07 16:50:50 +02:00
|
|
|
// HTML parser
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(libs.jsoup)
|
2021-08-07 16:50:50 +02:00
|
|
|
|
2020-12-31 17:28:34 +01:00
|
|
|
// Disk
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(libs.disklrucache)
|
|
|
|
implementation(libs.unifile)
|
|
|
|
implementation(libs.junrar)
|
2020-12-31 17:28:34 +01:00
|
|
|
|
|
|
|
// Preferences
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(libs.preferencektx)
|
2020-12-31 17:28:34 +01:00
|
|
|
|
|
|
|
// Dependency injection
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(libs.injekt.core)
|
2020-12-31 17:28:34 +01:00
|
|
|
|
2021-08-07 16:50:50 +02:00
|
|
|
// Image loading
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(libs.bundles.coil)
|
|
|
|
implementation(libs.subsamplingscaleimageview) {
|
2021-05-25 19:42:48 +02:00
|
|
|
exclude(module = "image-decoder")
|
|
|
|
}
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(libs.image.decoder)
|
2020-12-31 17:28:34 +01:00
|
|
|
|
|
|
|
// Sort
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(libs.natural.comparator)
|
2020-12-31 17:28:34 +01:00
|
|
|
|
2021-08-07 16:50:50 +02:00
|
|
|
// UI libraries
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(libs.material)
|
|
|
|
implementation(libs.flexible.adapter.core)
|
|
|
|
implementation(libs.flexible.adapter.ui)
|
|
|
|
implementation(libs.photoview)
|
|
|
|
implementation(libs.directionalviewpager) {
|
2021-09-20 20:33:35 +02:00
|
|
|
exclude(group = "androidx.viewpager", module = "viewpager")
|
|
|
|
}
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(libs.insetter)
|
2022-12-03 04:35:30 +01:00
|
|
|
implementation(libs.bundles.richtext)
|
2022-04-23 16:52:19 +02:00
|
|
|
implementation(libs.aboutLibraries.compose)
|
2022-09-10 04:29:40 +02:00
|
|
|
implementation(libs.cascade)
|
2022-10-15 17:38:01 +02:00
|
|
|
implementation(libs.bundles.voyager)
|
2022-11-10 04:31:56 +01:00
|
|
|
implementation(libs.wheelpicker)
|
2022-12-09 23:23:00 +01:00
|
|
|
implementation(libs.materialmotion.core)
|
2020-12-31 17:28:34 +01:00
|
|
|
|
2021-08-07 16:50:50 +02:00
|
|
|
// Logging
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(libs.logcat)
|
2021-08-07 16:50:50 +02:00
|
|
|
|
|
|
|
// Crash reports/analytics
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(libs.acra.http)
|
|
|
|
"standardImplementation"(libs.firebase.analytics)
|
2021-08-07 16:50:50 +02:00
|
|
|
|
2021-09-25 20:31:52 +02:00
|
|
|
// Shizuku
|
2022-03-04 15:58:31 +01:00
|
|
|
implementation(libs.bundles.shizuku)
|
2021-09-25 20:31:52 +02:00
|
|
|
|
2020-12-31 17:28:34 +01:00
|
|
|
// Tests
|
2022-03-04 15:58:31 +01:00
|
|
|
testImplementation(libs.junit)
|
2020-12-31 17:28:34 +01:00
|
|
|
|
|
|
|
// For detecting memory leaks; see https://square.github.io/leakcanary/
|
2022-03-04 15:58:31 +01:00
|
|
|
// debugImplementation(libs.leakcanary.android)
|
2022-04-24 22:28:09 +02:00
|
|
|
implementation(libs.leakcanary.plumber)
|
2020-12-31 17:28:34 +01:00
|
|
|
}
|
|
|
|
|
2022-10-04 15:22:55 +02:00
|
|
|
androidComponents {
|
|
|
|
beforeVariants { variantBuilder ->
|
|
|
|
// Disables standardBenchmark
|
|
|
|
if (variantBuilder.buildType == "benchmark") {
|
|
|
|
variantBuilder.enable = variantBuilder.productFlavors.containsAll(listOf("default" to "dev"))
|
|
|
|
}
|
|
|
|
}
|
2022-10-30 16:42:06 +01:00
|
|
|
onVariants(selector().withFlavor("default" to "standard")) {
|
|
|
|
// Only excluding in standard flavor because this breaks
|
|
|
|
// Layout Inspector's Compose tree
|
|
|
|
it.packaging.resources.excludes.add("META-INF/*.version")
|
|
|
|
}
|
2022-10-04 15:22:55 +02:00
|
|
|
}
|
|
|
|
|
2020-12-31 17:28:34 +01:00
|
|
|
tasks {
|
2022-04-24 22:16:05 +02:00
|
|
|
|
2022-12-17 18:02:01 +01:00
|
|
|
withType<LintTask>().configureEach {
|
2022-08-31 21:56:08 +02:00
|
|
|
exclude { it.file.path.contains("generated[\\\\/]".toRegex()) }
|
2022-08-18 20:06:32 +02:00
|
|
|
}
|
|
|
|
|
2020-12-31 17:28:34 +01:00
|
|
|
// See https://kotlinlang.org/docs/reference/experimental.html#experimental-status-of-experimental-api(-markers)
|
|
|
|
withType<KotlinCompile> {
|
|
|
|
kotlinOptions.freeCompilerArgs += listOf(
|
2022-04-29 00:09:16 +02:00
|
|
|
"-opt-in=coil.annotation.ExperimentalCoilApi",
|
2022-10-15 17:38:01 +02:00
|
|
|
"-opt-in=com.google.accompanist.permissions.ExperimentalPermissionsApi",
|
2022-12-03 04:35:30 +01:00
|
|
|
"-opt-in=androidx.compose.foundation.layout.ExperimentalLayoutApi",
|
2022-10-09 21:49:32 +02:00
|
|
|
"-opt-in=androidx.compose.material.ExperimentalMaterialApi",
|
2022-04-29 00:09:16 +02:00
|
|
|
"-opt-in=androidx.compose.material3.ExperimentalMaterial3Api",
|
2022-12-08 04:40:57 +01:00
|
|
|
"-opt-in=androidx.compose.material.ExperimentalMaterialApi",
|
2022-04-29 00:09:16 +02:00
|
|
|
"-opt-in=androidx.compose.ui.ExperimentalComposeUiApi",
|
2022-06-25 17:03:48 +02:00
|
|
|
"-opt-in=androidx.compose.foundation.ExperimentalFoundationApi",
|
2022-10-15 17:38:01 +02:00
|
|
|
"-opt-in=androidx.compose.animation.ExperimentalAnimationApi",
|
2022-06-25 17:03:48 +02:00
|
|
|
"-opt-in=androidx.compose.animation.graphics.ExperimentalAnimationGraphicsApi",
|
2022-08-11 05:26:34 +02:00
|
|
|
"-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
|
|
|
|
"-opt-in=kotlinx.coroutines.FlowPreview",
|
2022-08-06 05:11:06 +02:00
|
|
|
"-opt-in=kotlinx.coroutines.InternalCoroutinesApi",
|
|
|
|
"-opt-in=kotlinx.serialization.ExperimentalSerializationApi",
|
2020-12-31 17:28:34 +01:00
|
|
|
)
|
2022-10-29 15:37:48 +02:00
|
|
|
|
|
|
|
if (project.findProperty("tachiyomi.enableComposeCompilerMetrics") == "true") {
|
|
|
|
kotlinOptions.freeCompilerArgs += listOf(
|
|
|
|
"-P",
|
|
|
|
"plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=" +
|
|
|
|
project.buildDir.absolutePath + "/compose_metrics"
|
|
|
|
)
|
|
|
|
kotlinOptions.freeCompilerArgs += listOf(
|
|
|
|
"-P",
|
|
|
|
"plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=" +
|
|
|
|
project.buildDir.absolutePath + "/compose_metrics"
|
|
|
|
)
|
|
|
|
}
|
2020-12-31 17:28:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-31 17:32:18 +01:00
|
|
|
buildscript {
|
|
|
|
dependencies {
|
2022-03-04 15:58:31 +01:00
|
|
|
classpath(kotlinx.gradle)
|
2021-01-17 17:09:29 +01:00
|
|
|
}
|
|
|
|
}
|