-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
55 lines (51 loc) · 1.76 KB
/
build.gradle
File metadata and controls
55 lines (51 loc) · 1.76 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
54
55
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
app_compat_version = '1.2.0'
card_view_version = '1.0.0'
chart_version = '3.1.0'
constraint_layout_version = '2.0.4'
design_version = '29.0.2'
espresso_version = '3.2.0'
gradle_version = '7.3.0'
junit_version = '4.12'
kotlin_version = '1.8.22'
ktx_core_version = '1.9.0'
map_version = '17.0.0'
material_version = '1.3.0-beta01'
nav_compose_version = '1.0.0-alpha04'
nav_version = '2.6.0'
recycler_view_version = '1.1.0'
test_ext_junit_version = '1.1.1'
ext.rxkotlin_version = "2.4.0"
hilt_version = "2.44"
}
repositories {
google()
maven { url 'https://naver.jfrog.io/artifactory/maven/'}
maven {url "https://jitpack.io"}
maven {url 'https://maven.google.com/'}
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.2"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:2.44"
classpath "com.squareup:javapoet:1.13.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
maven {url "https://jitpack.io"}
maven {url 'https://maven.google.com/'}
maven { url 'https://naver.jfrog.io/artifactory/maven/'}
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}