-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
48 lines (40 loc) · 1.42 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
/*ext.kotlin_version = "1.9.25"
ext.kotlin_coroutines_version = "1.9.0"*/
apply from: "common_support.gradle"
ext {
// compose_version = '1.5.15'
kcomponent_isMergeOutputFile = true
}
ext.component_group_id = "com.xiaojinzi"
ext.component_asm_util_class_output_path = "./Temp/ASMUtil.class"
ext.component_asm_disable = false
// 注解生成器生成的文件 json 信息都
ext.component_router_doc_folder = "./Doc"
ext.component_router_doc_enable = false
repositories {
google()
maven {
url './RepoKComponent'
}
maven { url 'https://jitpack.io' }
jcenter()
}
dependencies {
classpath libs.gradle
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${libs.versions.kotlin.asProvider().get()}"
classpath "com.xiaojinzi.kcomponent:kcomponent-plugin:${libs.versions.component.asProvider().get()}"
}
}
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.library) apply false
alias(libs.plugins.compose.compiler) apply false
alias(libs.plugins.kotlin.jvm) apply false
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.ksp) apply false
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}