-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
32 lines (29 loc) · 841 Bytes
/
build.gradle.kts
File metadata and controls
32 lines (29 loc) · 841 Bytes
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
buildscript {
repositories {
google()
mavenCentral()
maven { setUrl("https://plugins.gradle.org/m2/") }
}
dependencies {
classpath("com.android.tools.build:gradle:${Versions.gradleVersion}")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlinVersion}")
classpath("com.google.gms:google-services:${Versions.googleServiceVersion}")
classpath(ClassPathPlugins.crashlytics)
classpath(ClassPathPlugins.hilt)
}
}
allprojects {
repositories {
google()
mavenCentral()
maven(url = "https://devrepo.kakao.com/nexus/content/groups/public/")
}
}
subprojects {
afterEvaluate {
project.apply("$rootDir/gradle/common.gradle")
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}