-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
30 lines (28 loc) · 955 Bytes
/
settings.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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
buildscript {
repositories {
google()
mavenCentral()
jcenter()
// Android Build Server
}
dependencies {
classpath("com.android.tools.build:gradle:${Versions.ANDROID_GRADLE_PLUGIN}")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.KOTLIN}")
classpath("com.google.gms:google-services:${Versions.GOOGLE_SERVICES}")
classpath("androidx.benchmark:benchmark-gradle-plugin:${Versions.BENCHMARK}")
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:${Versions.NAVIGATION}")
classpath("com.google.firebase:firebase-crashlytics-gradle:${Versions.FIREBASE_CRASHLYTICS}")
classpath("com.google.dagger:hilt-android-gradle-plugin:${Versions.HILT_AGP}")
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}
include(
":app"
)