This repository has been archived by the owner on Sep 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
/
dependencies.gradle
49 lines (45 loc) · 1.76 KB
/
dependencies.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
ext.versions = [
min_sdk: 14,
compile_sdk: 33,
publish_version: "3.0.2",
publish_version_code: 26
]
ext.deps = [
gradle_plugins: [
android: "com.android.tools.build:gradle:7.3.1",
dependency_analysis: "com.autonomousapps:dependency-analysis-gradle-plugin:1.18.0",
dokka: "org.jetbrains.dokka:dokka-gradle-plugin:1.7.20",
spotless: "com.diffplug.spotless:spotless-plugin-gradle:6.12.0",
versions: "com.github.ben-manes:gradle-versions-plugin:0.44.0",
kotlin: "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.22",
nexus_publish: "io.github.gradle-nexus:publish-plugin:1.1.0"
],
androidx: [
annotations: "androidx.annotation:annotation:1.5.0",
app_compat: "androidx.appcompat:appcompat:1.5.1",
core: "androidx.core:core-ktx:1.9.0",
ktx: [
fragment: "androidx.fragment:fragment-ktx:1.5.5",
lifecycle: "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1",
],
material: "com.google.android.material:material:1.7.0"
],
kotlin: [
stdlib8: "org.jetbrains.kotlin:kotlin-stdlib-jdk8",
coroutines: [
core: "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4",
android: "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.2",
flow_binding: "io.github.reactivecircus.flowbinding:flowbinding-android:1.2.0"
],
test: [
mockito: "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
]
],
test: [
junit: "junit:junit:4.13.2",
robolectric: "org.robolectric:robolectric:4.9.1",
mockito_core: "org.mockito:mockito-core:4.10.0",
mockito_inline: "org.mockito:mockito-inline:4.10.0",
truth: "com.google.truth:truth:1.1.3",
]
]