-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunifyDeps.gradle
22 lines (18 loc) · 1.04 KB
/
unifyDeps.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
rootProject.ext.compileSdkVersion = 29
rootProject.ext.minSdkVersion = 21
rootProject.ext.targetSdkVersion = 29
rootProject.ext.sourceCompatibility = JavaVersion.VERSION_1_8
rootProject.ext.lifecycle = "2.0.0"
rootProject.ext.deps = [
// android
androidAppCompat : "androidx.appcompat:appcompat:1.0.2",
androidKTX : "androidx.core:core-ktx:1.0.2",
androidRecyclerView : "androidx.recyclerview:recyclerview:1.0.0",
androidLifecycleAll : "androidx.lifecycle:lifecycle-extensions:$lifecycle",
androidLifecycleCompiler: "androidx.lifecycle:lifecycle-compiler:$lifecycle",
androidLifecycleJava : "androidx.lifecycle:lifecycle-common-java8:$lifecycle",
androidLifecycleRx : "androidx.lifecycle:lifecycle-reactivestreams:$lifecycle",
fcm : "com.google.firebase:firebase-messaging:20.0.0",
hmsBase : "com.huawei.android.hms:base:2.6.3.306",
hmsPush : "com.huawei.android.hms:push:2.6.3.306",
]