-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
53 lines (48 loc) · 1.66 KB
/
build.gradle
File metadata and controls
53 lines (48 loc) · 1.66 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
gradlePluginPortal()
mavenCentral()
maven { url 'https://devrepo.kakao.com/nexus/content/groups/public/'}
}
ext {
ktxVersion = '1.8.0'
appCompatVersion = '1.4.2'
materialVersion = '1.6.1'
constraintLayoutVersion = '2.1.4'
hiltVersion = '2.42'
recyclerViewVersion = '1.2.1'
splashScreenVersion = '1.0.0'
lifecycleVersion = '2.4.1'
navigationVersion = '2.5.1'
roomVersion = '2.4.3'
dataStorePreferencesVersion = '1.0.0'
cameraXVersion = '1.2.0-alpha04'
swipeRefreshLayoutVersion = '1.1.0'
jUnitVersion = '4.13.2'
coreTestingVersion = '2.1.0'
androidXJUnitVersion = '1.1.3'
espressoVersion = '3.4.0'
retrofit2Version = '2.9.0'
okHttpVersion = '4.10.0'
glideVersion = '4.13.2'
kakaoVersion = '2.11.0'
circleImageViewVersion = '3.1.0'
lottieVersion = '5.2.0'
}
dependencies {
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.1"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
classpath 'com.google.gms:google-services:4.3.13'
}
}
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.7.10' apply false
id 'org.jetbrains.kotlin.jvm' version '1.6.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}