forked from kizitonwose/Calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
50 lines (43 loc) · 1.71 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
50
ext.versions = [
min_sdk_library: 15,
min_sdk_sample: 21,
target_sdk: 29,
compile_sdk: 29,
version_code: 1,
version_name: "0.4.0"
]
def espresso_version = "3.3.0"
def coroutines_version = "1.3.9"
ext.deps = [
gradle_plugins: [
android: "com.android.tools.build:gradle:4.0.1",
kotlin: "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.10",
maven_release: "com.github.dcendents:android-maven-gradle-plugin:2.1",
ktlint: "org.jlleitschuh.gradle:ktlint-gradle:9.4.0"
],
androidx: [
legacy: "androidx.legacy:legacy-support-v4:1.0.0",
appcompat: "androidx.appcompat:appcompat:1.2.0",
core_ktx: "androidx.core:core-ktx:1.3.1",
constraint_layout: "androidx.constraintlayout:constraintlayout:2.0.0",
cardview: "androidx.cardview:cardview:1.0.0",
recyclerview: "androidx.recyclerview:recyclerview:1.2.0-alpha05"
],
material_library: "com.google.android.material:material:1.2.1",
desugaring: "com.android.tools:desugar_jdk_libs:1.0.10",
kotlin: [
stdlib8: "org.jetbrains.kotlin:kotlin-stdlib-jdk8",
coroutines_core: "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version",
coroutines_android: "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
],
test: [
junit: "junit:junit:4.12",
android: [
espresso_core: "androidx.test.espresso:espresso-core:$espresso_version",
espresso_contrib: "androidx.test.espresso:espresso-contrib:$espresso_version",
runner: "androidx.test:runner:1.3.0",
rules: "androidx.test:rules:1.3.0",
ext_junit: "androidx.test.ext:junit:1.1.2",
]
]
]