-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
62 lines (61 loc) · 2.37 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
gradle_version = '7.0.3'
kotlin_compailer_version = '1.6.20'
core_ktx_version = '1.9.0-alpha03'
lifecycle_ktx_version = '2.4.1'
collection_ktx_version = '1.2.0'
hilt_gradle_version = '2.41'
hilt_version = '1.0.0'
compose_version = '1.2.0-alpha08'
activity_compose_version = '1.4.0'
appcompat_version = "1.4.1"
radiography_version = "2.4.1"
material_version = "1.6.0"
constraint_layout_compose_version = '1.0.0'
hilt_compose_navigation_version = '1.0.0'
accompanist_version = '0.24.7-alpha'
retrofit_version = '2.9.0'
retrofit_serialization_converter_version = '0.8.0'
okhttp_version = '5.0.0-alpha.6'
serialization_version = '1.2.2'
viewmodel_ktx_version = '2.4.0-alpha03'
coroutine_version = '1.6.1'
coil_version = '1.4.0'
chucker_version = '3.5.2'
mockk_version = '1.12.3'
truth_version = '1.1.3'
truth_ext_version = '1.4.0'
junit_version = '4.13.2'
junit_ext_version = '1.1.3'
espresso_core_version = '3.4.0'
arch_core_test_version = '2.1.0'
mock_web_server_version = '5.0.0-alpha.6'
secrets_gradle_plugin_version = '2.0.0'
google_maps_version = '3.1.0-beta'
google_maps_ktx_version = '2.2.0'
volley_version = '1.2.0'
ktlint_version = '10.2.1'
}
repositories {
google()
mavenCentral()
maven {
url = uri("https://maven.pkg.github.com/google/secrets-gradle-plugin")
credentials {
password = project.findProperty("google.maps.key") ?: System.getenv("KEY")
}
}
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_compailer_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_gradle_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_compailer_version"
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:$secrets_gradle_plugin_version"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}