-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
39 lines (37 loc) · 1.18 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
core_ktx = "1.6.0"
junit = "4.13.2"
junit_ext = "1.1.3"
espresso = "3.4.0"
compose_version = "1.0.0"
hilt_version = "2.37"
hilt_navigation_compose = "1.0.0-alpha03"
ui_tooling = "1.0.0"
activity_ktx = "1.3.0"
compose_activity = "1.3.0"
compose_viewmodel = "1.0.0-alpha07"
compose_navigation = "2.4.0-alpha05"
lifecycle_ktx = "2.3.1"
retrofit = "2.9.0"
gson_adapter = "2.9.0"
accompanist = "0.15.0"
exoplayer = "2.14.2"
coil_compose = "1.3.1"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}