forked from melod1n/fast-messenger
Upstream changes (#23)
This commit is contained in:
+23
-23
@@ -1,28 +1,28 @@
|
||||
buildscript {
|
||||
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10")
|
||||
classpath("com.android.tools.build:gradle:8.1.0")
|
||||
}
|
||||
}
|
||||
import dev.iurysouza.modulegraph.Theme
|
||||
|
||||
plugins {
|
||||
id("org.jetbrains.kotlin.android") version "1.8.20" apply false
|
||||
id("com.google.devtools.ksp") version "1.8.20-1.0.11" apply false
|
||||
alias(libs.plugins.com.android.application) apply false
|
||||
alias(libs.plugins.org.jetbrains.kotlin.android) apply false
|
||||
alias(libs.plugins.org.jetbrains.kotlin.plugin.parcelize) apply false
|
||||
alias(libs.plugins.android.library) apply false
|
||||
|
||||
id("dev.iurysouza.modulegraph") version "0.8.1"
|
||||
}
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
maven(url = "https://jitpack.io")
|
||||
}
|
||||
}
|
||||
|
||||
tasks.register("clean", Delete::class) {
|
||||
delete(rootProject.buildDir)
|
||||
moduleGraphConfig {
|
||||
readmePath.set("${rootDir}/README.md")
|
||||
heading.set("### Module Graph")
|
||||
theme.set(
|
||||
Theme.BASE(
|
||||
mapOf(
|
||||
"primaryTextColor" to "#fff",
|
||||
"primaryColor" to "#5a4f7c",
|
||||
"primaryBorderColor" to "#5a4f7c",
|
||||
"lineColor" to "#f5a623",
|
||||
"tertiaryColor" to "#40375c",
|
||||
"fontSize" to "12px",
|
||||
),
|
||||
focusColor = "#FA8140"
|
||||
),
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user