-
Notifications
You must be signed in to change notification settings - Fork 37
/
build.gradle
78 lines (64 loc) · 2.09 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compileSdkVersion = 34
minSdkVersion = 24
targetSdkVersion = 34
kotlin_version = '1.9.25'
kotlinx_version = '1.8.1'
desugar_version = '2.1.1'
firebase_version = '33.2.0'
activity_version = '1.9.1'
appcompat_version = '1.7.0'
constraintlayout_version = '2.1.4'
core_version = '1.13.1'
fragment_version = '1.8.2'
lifecycle_version = '2.8.4'
preference_version = '1.2.1'
recyclerview_version = '1.3.2'
coresplash_version = '1.0.1'
work_version = '2.9.1'
navigation_version = '2.7.7'
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_bom_version = '2024.08.00'
compose_compiler_version = '1.5.15'
wear_compose_version = '1.3.1'
wear_tiles_version = '1.4.0'
wear_watchface_version = '1.2.1'
horologist_version = '0.5.28'
accompanist_version = '0.34.0'
gson_version = '2.11.0'
timber_version = '5.0.1'
// Shizuku
shizuku_version = '13.1.5'
refine_version = '4.4.0'
}
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.2'
classpath 'com.google.gms:google-services:4.4.2'
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.2'
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
}