-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
25 lines (22 loc) · 847 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.6.20"
ext.hilt_version = '2.40.5'
ext.coroutines_version = '1.5.2'
ext.glide_version = '4.12.0'
ext.navigation_version = '1.0.0-alpha11'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
// classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.4.2")
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}