-
Notifications
You must be signed in to change notification settings - Fork 179
/
Copy pathbuild.gradle
69 lines (59 loc) · 1.95 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '2.0.20'
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.6.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
classpath 'com.google.gms:google-services:4.4.2'
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.2'
}
}
allprojects {
repositories {
mavenCentral()
google()
maven { url "https://jitpack.io" }
}
}
ext {
SERVER_HOST = 'https://alkitab-host.appspot.com/'
RIBKA_FUNCTIONS_HOST = 'https://us-central1-pulau-ribka.cloudfunctions.net/'
RIBKA_FUNCTIONS_HOST_DEBUG = 'http://10.0.3.2:5001/pulau-ribka/us-central1/'
compileSdkVersion = 35
minSdkVersion = 26
targetSdkVersion = 35
// Android X
androidxActivityVersion = '1.9.3'
androidxAnnotationVersion = '1.6.0'
androidxAppcompatVersion = '1.7.0'
androidxConstraintlayoutVersion = '2.2.0'
androidxCoreVersion = '1.15.0'
androidxCursoradapterVersion = '1.0.0'
androidxFragmentVersion = '1.8.5'
androidxMedia3Version = '1.5.1'
androidxMultidexVersion = '2.0.1'
androidxPercentlayoutVersion = '1.0.0'
androidxPreferenceVersion = '1.2.1'
androidxRecyclerviewVersion = '1.3.2'
androidxSwiperefreshlayoutVersion = '1.1.0'
androidxViewpagerVersion = '1.1.0'
// Google
firebaseBomVersion = '29.0.3'
gsonVersion = '2.11.0'
materialVersion = '1.12.0'
// Tests
junitVersion = '4.13.2'
leakcanaryVersion = '2.10'
// Misc
coilVersion = '1.1.0'
fancyShowcaseViewVersion = '1.4.0'
fastscrollVersion = '1.1.7'
kotlinxSerializationJsonVersion = '1.5.1'
materialDialogsVersion = '3.3.0'
okhttpVersion = '4.12.0'
}