-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
41 lines (39 loc) · 1.24 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
39
40
41
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
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"
lottieVersion = "3.7.0"
glideVersion = "4.12.0"
timberVersion = "5.0.1"
lifecycleVersion = "2.2.0"
circleimageviewVersion = "3.1.0"
converterMoshiVersion = "2.9.0"
moshiVersion = "1.12.0"
roomVersion = "2.4.2"
systemuicontroller = "1.0.0"
}
repositories {
google()
maven { url 'https://devrepo.kakao.com/nexus/content/groups/public/' }
maven { url "https://jitpack.io" }
jcenter()
}
dependencies {
classpath 'com.google.gms:google-services:4.3.10'
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.40.1'
}
}
plugins {
id 'com.android.application' version '7.2.1' apply false
id 'com.android.library' version '7.2.1' apply false
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}