-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
45 lines (39 loc) · 1.21 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
41
42
43
44
45
buildscript {
ext {
compose = '1.1.1'
firebase = '30.0.1'
hilt = '2.40.5'
room = '2.5.0-alpha01'
composeActivity = '1.4.0'
coreKTX = '1.7.0'
runTimeKTX = '2.4.1'
googleServices = '4.3.10'
coroutines = '1.6.0'
coroutinesPlayServices = '1.1.1'
/**test*/
truthTest = '1.1.3'
jUnitTest = '4.13.2'
mockkTest = '1.12.3'
archCoreTest = '2.1.0'
coroutinesTest = '1.6.0'
mockitoTest = '3.10.0'
composeAndroidTest = '1.1.1'
jUnitExtAndroidTest = '1.1.3'
espressoAndroidTest = '3.4.0'
}
repositories {
google()
}
dependencies {
classpath "com.google.gms:google-services:$rootProject.googleServices"
classpath "com.google.dagger:hilt-android-gradle-plugin:$rootProject.hilt"
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
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.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}