-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
36 lines (34 loc) · 1.18 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
activity_ktx_version = '1.6.0'
fragment_ktx_version = '1.5.3'
lifecycle_version = '2.5.1'
retrofit_version = '2.9.0'
okhttp_version = '4.10.0'
kotlinx_serialization_version = '1.4.1'
kotlinx_serialization_converter_version = '0.8.0'
hilt_version = '2.44'
dotsindicator_version = '4.3'
lottie_version = '5.2.0'
swipe_refresh_layout_version = '1.1.0'
switch_button_version = '0.0.3@aar'
fcm_version = '23.1.1'
fb_messaging_version = '23.1.1'
fb_bom_version = '31.1.1'
}
repositories {
mavenCentral()
google()
}
dependencies {
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath 'com.google.gms:google-services:4.3.14'
}
}
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.7.10' apply false
id 'com.google.gms.google-services' version '4.3.10' apply false
}