forked from FunkyMuse/Vigilante
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (37 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
37
38
39
40
buildscript {
ext {
utilsVersion = "3.4.8"
lifecycle = '2.6.2'
coroutines = "1.6.3-native-mt"
hiltJetpackVersion = '1.0.0'
crashyVersion = '1.2.0'
room_version = "2.5.2"
paging_version = "3.2.1"
camerax_version = '1.3.0-rc01'
mockk = "1.13.7"
nav_version = '2.7.2'
daggerVersion = '2.48'
work_version = "2.8.1"
kotlin_version = "1.9.10"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$daggerVersion"
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}