-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
37 lines (34 loc) · 1.1 KB
/
build.gradle.kts
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
buildscript {
extra.apply {
set("VERSION_CODE", 18)
set("VERSION_NAME", "2.3.0.${extra["VERSION_CODE"]}")
set("APK_NAME", "Eye Health Manager")
set("MIN_SDK", 24)
set("TARGET_SDK", 35)
set("kotlinVersion", "2.0.21")
set("coroutinesVersion", "1.9.0")
set("objectboxVersion", "4.0.2")
set("koinVersion", "4.0.0")
set("junitVersion", "5.11.2")
set("desugaringVersion", "2.1.2")
}
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
}
dependencies {
classpath("com.android.tools.build:gradle:8.7.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${rootProject.extra["kotlinVersion"]}")
classpath("com.google.firebase:firebase-crashlytics-gradle:3.0.2")
classpath("com.google.gms:google-services:4.4.2")
classpath("io.objectbox:objectbox-gradle-plugin:${rootProject.extra["objectboxVersion"]}")
}
}
allprojects {
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
}
}