mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 05:35:07 +01:00
2b5d9fd76b
* Move shared configuration to subprojects in root Gradle file * Missed but not forgotten * Review changes
61 lines
1.6 KiB
Plaintext
61 lines
1.6 KiB
Plaintext
import com.android.build.gradle.BaseExtension
|
|
import com.android.build.gradle.BasePlugin
|
|
import org.gradle.api.tasks.testing.logging.TestLogEvent
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
|
|
|
|
buildscript {
|
|
dependencies {
|
|
classpath(libs.android.shortcut.gradle)
|
|
classpath(libs.google.services.gradle)
|
|
classpath(libs.aboutLibraries.gradle)
|
|
classpath(libs.sqldelight.gradle)
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
alias(kotlinx.plugins.serialization) apply false
|
|
}
|
|
|
|
subprojects {
|
|
tasks.withType<KotlinJvmCompile> {
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
}
|
|
}
|
|
|
|
tasks.withType<Test> {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events(TestLogEvent.PASSED, TestLogEvent.SKIPPED, TestLogEvent.FAILED)
|
|
}
|
|
}
|
|
|
|
plugins.withType<BasePlugin> {
|
|
plugins.apply("tachiyomi.lint")
|
|
configure<BaseExtension> {
|
|
compileSdkVersion(AndroidConfig.compileSdk)
|
|
defaultConfig {
|
|
minSdk = AndroidConfig.minSdk
|
|
targetSdk = AndroidConfig.targetSdk
|
|
ndk {
|
|
version = AndroidConfig.ndk
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
isCoreLibraryDesugaringEnabled = true
|
|
}
|
|
|
|
dependencies {
|
|
add("coreLibraryDesugaring", libs.desugar)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.register<Delete>("clean") {
|
|
delete(rootProject.buildDir)
|
|
}
|