-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
36 lines (31 loc) · 1.01 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
buildscript {
ext {
kotlinVersion = '1.7.0'
navigationVersion = '2.4.1'
hiltVersion = '2.38.1'
hiltAndroidXVersion = ' 2.40'
pagingVersion = '3.1.0'
retrofitVersion = '2.9.0'
glideVersion = '4.12.0'
roomDatabaseVersion = '2.4.1'
lifecycleVersion = '2.4.0'
picassoVersion = '2.71828'
dataStoreVersion = '1.0.0'
}
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.0"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}