-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathbuild.gradle.kts
37 lines (31 loc) · 925 Bytes
/
build.gradle.kts
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
//apply(from = "./config.gradle")
buildscript {
val kotlin_version = "1.6.21"
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
dependencies {
classpath("com.android.tools.build:gradle:7.1.3")
classpath("com.google.gms:google-services:4.3.14")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
classpath("com.google.dagger:hilt-android-gradle-plugin:2.40.1")
classpath("com.alibaba:arouter-register:1.0.2")
}
}
plugins {
id("org.fly.dep")
// id("com.android.library") version "7.1.3" apply false
// id("org.jetbrains.kotlin.android") version "1.7.10" apply false
}
allprojects {
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}