-
Notifications
You must be signed in to change notification settings - Fork 19
/
build.gradle
39 lines (35 loc) · 1.32 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
buildscript {
ext {
compose_ui_version = '1.3.1'
hilt_version = '2.42'
dagger_version = '2.35.1'
retrofit_version = '2.9.0'
gson_version = '2.9.0'
okhttp_version = '5.0.0-alpha.3'
core_kotlin_version = '1.9.0'
activity_compose_version = '1.6.1'
lifecycle_version = '2.5.1'
room_version = "2.4.3"
coil_version = "2.2.2"
data_store_version = '1.0.0'
nav_version = "2.5.3"
accompanist_version = "0.13.0"
firebase_version = "24.4.1"
flow_version = "1.6.1"
splash_version = "1.0.0"
data_store_version = "1.0.0"
lottie_version = "4.0.0"
}
dependencies {
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath 'com.google.gms:google-services:4.3.14'
classpath 'com.google.firebase:perf-plugin:1.4.2'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
id 'org.jetbrains.kotlin.jvm' version '1.7.10' apply false
}