-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
38 lines (34 loc) · 905 Bytes
/
Copy pathbuild.gradle.kts
File metadata and controls
38 lines (34 loc) · 905 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
33
34
35
36
37
38
buildscript {
repositories {
google()
mavenCentral()
maven { setUrl("https://maven.google.com") }
gradlePluginPortal()
}
dependencies {
classpath("com.android.tools.build:gradle:7.2.1")
classpath("com.project.dependencies:dependencies:SNAPSHOT")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21")
classpath("com.google.gms:google-services:4.3.13")
classpath("com.google.dagger:hilt-android-gradle-plugin:2.42")
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { setUrl("https://maven.google.com") }
}
}
subprojects {
buildscript {
repositories {
google()
mavenCentral()
maven { setUrl("https://maven.google.com") }
}
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}