-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
42 lines (39 loc) · 1.34 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
room_version = "2.4.3"
retrofit_version = "2.9.0"
okhttp_version = "4.9.3"
lifecycle_version = "2.5.1"
nav_version = "2.5.3"
daggerVersion = "2.40.5"
overscroll_version = "1.1.1"
coroutines_version = "1.6.1"
work_version = "2.7.1"
kotlin_version = "1.7.20"
preference_version = "1.2.0"
recyc_anim_version = "4.0.2"
lottie_version = "3.4.0"
loc_service_version = "20.0.0"
retrofit2_coroutine_version = "0.9.2"
google_ser_version = "4.3.14"
firebase_bom_version = "31.0.1"
firebase_crashlytics_version = "2.9.2"
pref_version = "1.4.2"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.gms:google-services:$google_ser_version"
// Crashlytics Gradle plugin
classpath "com.google.firebase:firebase-crashlytics-gradle:$firebase_crashlytics_version"
classpath "com.google.firebase:perf-plugin:$pref_version"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}