-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
74 lines (67 loc) · 2.46 KB
/
build.gradle
File metadata and controls
74 lines (67 loc) · 2.46 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
google()
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:8.8.2'
}
ext {
compose_bom_version = '2025.01.00'
compose_activity_version = "1.7.2"
kotlin_version = "2.1.0"
material_version = "1.9.0"
mlkit_core_version = "19.0.0"
mlkit_languages_version = "16.0.0"
kotlinx_coroutines_version = "1.6.4"
rxjava3_android_version = "3.0.2"
rxjava3_version = "3.1.6"
androidx_core_version = "1.10.1"
androidx_appcompat_version = "1.6.1"
androidx_activity_compose_version = "1.3.1"
compose_version = "1.2.1"
compose_constraint_layout_version = "1.0.1"
compose_view_binding_version = "1.2.1"
constraint_layout_version = "2.1.4"
google_player_services_version = "18.0.0"
google_material_version = "1.9.0"
klint_version = "10.1.0"
dependency_analysis_version = "1.20.0"
androidx_lifecycle_runtime_ktx_version = "2.5.1"
androidx_core_ktx_version = "1.8.0"
fragment_version = "1.5.5"
compose_constraint_layout_version = "1.0.1"
androidx_lifecycle_version = "2.7.0"
//Google Map
map_compose_version = "2.7.2"
google_play_location_services_version = "21.0.1"
google_map_utils_version = "2.4.0"
google_play_maps_services_version = "18.2.0"
//Map Box
map_box_version = "10.4.0"
what3words_android_wrapper_v4_version = "4.+"
what3words_android_wrapper_v3_version = "3.+"
what3words_android_ocr_components_version = "1.+"
what3words_android_map_components_version = "1.+"
what3words_android_components_version = "3.+"
}
}
plugins {
id "org.jetbrains.kotlin.android" version "$kotlin_version" apply false
id "org.jlleitschuh.gradle.ktlint" version "$klint_version" apply true
id "com.autonomousapps.dependency-analysis" version "$dependency_analysis_version" apply true
id "org.jetbrains.kotlin.plugin.compose" version "$kotlin_version" apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
allprojects {
configurations.configureEach {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
}