-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
95 lines (81 loc) · 2.88 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compileSdkVersion = 35
minSdkVersion = 23
targetSdkVersion = 34
kotlin_version = '1.9.25'
kotlinx_version = '1.9.0'
ksp_version = '1.9.25-1.0.20'
desugar_version = '2.1.3'
firebase_version = '33.7.0'
gms_location_version = '21.3.0'
gms_base_version = '18.5.0'
gms_basement_version = '18.5.0'
gms_tasks_version = '18.2.0'
gms_wearable_version = '19.0.0'
annotation_version = '1.9.1'
activity_version = '1.9.3'
appcompat_version = '1.7.0'
constraintlayout_version = '2.2.0'
core_version = '1.15.0'
arch_core_runtime_version = '2.2.0'
fragment_version = '1.8.5'
lifecycle_version = '2.8.7'
nav_version = '2.8.4'
paging_version = '3.3.4'
preference_version = '1.2.1'
recyclerview_version = '1.3.2'
room_version = '2.6.1'
coresplash_version = '1.0.1'
vectordrawable_version = '1.2.0'
work_version = '2.10.0'
test_core_version = '1.6.1'
test_runner_version = '1.6.2'
test_rules_version = '1.6.1'
junit_version = '1.2.1'
androidx_truth_version = '1.6.0'
google_truth_version = '1.4.4'
material_version = '1.12.0'
compose_compiler_version = '1.5.15'
compose_bom_version = '2024.11.00'
wear_compose_version = '1.4.0'
wear_tiles_version = '1.4.1'
wear_watchface_version = '1.2.1'
horologist_version = '0.6.21'
accompanist_version = '0.36.0'
glide_version = '4.16.0'
icu4j_version = '76.1'
jjwt_version = '0.12.6'
moshi_version = '1.15.2'
okhttp_version = '4.12.0'
timber_version = '5.0.1'
}
repositories {
mavenCentral()
google()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.7.3'
classpath "com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:$ksp_version"
classpath 'com.google.gms:google-services:4.4.2'
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.2'
classpath 'com.google.firebase:perf-plugin:1.4.2'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath "androidx.room:room-gradle-plugin:$room_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenCentral()
google()
maven { url 'https://jitpack.io' }
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}