-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (36 loc) · 1.02 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
materialVersion = "1.5.0"
coroutineVersion = "1.5.2"
retrofitVersion = "2.9.0"
okhttpVersion = "4.9.3"
gsonVersion = "2.8.9"
hiltVersion = "2.38.1"
activityVersion = "1.4.0"
fragmentVersion = "1.4.1"
glideVersion = "4.13.0"
}
repositories {
google()
mavenCentral()
maven {
url 'https://naver.jfrog.io/artifactory/maven/'
}
maven {
url 'https://jitpack.io'
}
maven {
url 'https://devrepo.kakao.com/nexus/content/groups/public/'
}
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
// Hilt
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}