-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
43 lines (39 loc) · 1.36 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
buildscript {
ext {
okhttpBom = '4.12.0'
composeBom = '2024.02.02'
android = '8.3.0'
kotlin = '1.9.22'
lottie = '6.4.0'
core_ktx = '1.10.0'
lifecycle = '2.7.0'
activity_compose = '1.8.2'
dataStore = '1.0.0'
retrofit = '2.10.0'
moshi = '1.15.1'
mockk = '1.13.4'
hilt = '2.51'
google_services = '4.4.1'
firebaseBom = '32.7.4'
playServicesLocation = '21.2.0'
ben_manes = '0.51.0'
}
repositories {
google()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
// Add the dependency for the Google services Gradle plugin
classpath "com.google.gms:google-services:$google_services"
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version "$android" apply false
id 'com.android.library' version "$android" apply false
id 'org.jetbrains.kotlin.android' version "$kotlin" apply false
id 'com.google.dagger.hilt.android' version "$hilt" apply false
id 'com.google.gms.google-services' version "$google_services" apply false
id 'com.github.ben-manes.versions' version "$ben_manes"
id 'com.google.devtools.ksp' version '1.9.22-1.0.17' apply false
}