forked from maxkeppeler/sheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
43 lines (36 loc) · 1.23 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
ext.versions = [
min_sdk: 21,
compile_sdk: 30,
build_tools: "30.0.0",
release_version: "2.1.3",
release_version_code: 15
]
ext.deps = [
gradle_plugins: [
android: "com.android.tools.build:gradle:4.1.0",
kotlin: "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.20",
versions: "com.github.ben-manes:gradle-versions-plugin:0.27.0"
],
androidx: [
constraint: "androidx.constraintlayout:constraintlayout:2.0.4",
annotations: "androidx.annotation:annotation:1.1.0",
core: "androidx.appcompat:appcompat:1.2.0",
lifecycle: [
runtime: "androidx.lifecycle:lifecycle-runtime:2.2.0",
compiler: "androidx.lifecycle:lifecycle-compiler:2.2.0"
],
preference: "androidx.preference:preference-ktx:1.1.1",
recycler_view: "androidx.recyclerview:recyclerview:1.1.0"
],
google_material: "com.google.android.material:material:1.3.0-beta01",
kotlin: [
stdlib8: "org.jetbrains.kotlin:kotlin-stdlib-jdk8",
coroutines: [
android: "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.2"
]
],
coil: "io.coil-kt:coil:1.1.0",
airbnb:[
lottie: "com.airbnb.android:lottie:3.6.0"
]
]