-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
23 lines (22 loc) · 727 Bytes
/
Copy pathbuild.gradle
File metadata and controls
23 lines (22 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.nav_version = '2.5.2'
ext.hilt_version = '2.40.5'
ext.glide_version ='4.13.2'
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.google.dagger:hilt-android-gradle-plugin:$hilt_version")
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version")
}
}
plugins {
id 'com.android.application' version '7.2.0' apply false
id 'com.android.library' version '7.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.6.20' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}