-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
26 lines (21 loc) · 949 Bytes
/
build.gradle
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
apply from: "$rootDir/constants.gradle"
repositories {
mavenCentral()
google()
maven { url 'https://devrepo.kakao.com/nexus/content/groups/public/'}
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "com.google.gms:google-services:$googleServicePluginVersion"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
classpath "com.google.gms:google-services:$firebaseVersion"
classpath "com.google.firebase:firebase-crashlytics-gradle:$firebaseCrashlyticsGradleVersion"
classpath "com.google.android.gms:oss-licenses-plugin:$licensePluginVersion"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}