forked from code-payments/code-android-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
36 lines (33 loc) · 995 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
buildscript {
repositories {
google()
mavenCentral()
maven(url = "https://plugins.gradle.org/m2/")
mavenCentral()
}
dependencies {
classpath(Classpath.android_gradle_build_tools)
classpath(Classpath.kotlin_hilt_plugin)
classpath(Classpath.androidx_navigation_safeargs)
classpath(Classpath.kotlin_gradle_plugin)
classpath(Classpath.google_services)
classpath(Classpath.crashlytics_gradle)
classpath(Classpath.bugsnag)
classpath(Classpath.firebase_perf)
classpath(Classpath.secrets_gradle_plugin)
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { setUrl("https://plugins.gradle.org/m2/") }
maven { setUrl("https://jitpack.io") }
}
configurations.all {
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib-jdk7")
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}