mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-04 21:55:05 +01:00
53 lines
1.4 KiB
Plaintext
53 lines
1.4 KiB
Plaintext
plugins {
|
|
id("com.android.application") version BuildPluginsVersion.AGP apply false
|
|
id("com.android.library") version BuildPluginsVersion.AGP apply false
|
|
kotlin("android") version BuildPluginsVersion.KOTLIN apply false
|
|
id("org.jlleitschuh.gradle.ktlint") version BuildPluginsVersion.KTLINT
|
|
id("com.github.ben-manes.versions") version BuildPluginsVersion.VERSIONS_PLUGIN
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
maven { setUrl("https://www.jitpack.io") }
|
|
maven { setUrl("https://plugins.gradle.org/m2/") }
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
apply {
|
|
plugin("org.jlleitschuh.gradle.ktlint")
|
|
}
|
|
|
|
ktlint {
|
|
debug.set(false)
|
|
version.set(Versions.KTLINT)
|
|
verbose.set(true)
|
|
android.set(false)
|
|
outputToConsole.set(true)
|
|
ignoreFailures.set(false)
|
|
enableExperimentalRules.set(true)
|
|
filter {
|
|
exclude("**/generated/**")
|
|
include("**/kotlin/**")
|
|
}
|
|
}
|
|
}
|
|
|
|
buildscript {
|
|
dependencies {
|
|
classpath("com.github.zellius:android-shortcut-gradle-plugin:0.1.2")
|
|
classpath("com.google.gms:google-services:4.3.3")
|
|
classpath("com.google.android.gms:oss-licenses-plugin:0.10.2")
|
|
}
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
tasks.register("clean", Delete::class) {
|
|
delete(rootProject.buildDir)
|
|
}
|