forked from bluelinelabs/Conductor
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.gradle
More file actions
24 lines (19 loc) · 985 Bytes
/
Copy pathdependencies.gradle
File metadata and controls
24 lines (19 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
ext {
minSdkVersion = 16
compileSdkVersion = 30
targetSdkVersion = 30
leakCanaryVersion = '1.5.4'
archComponentsVersion = '2.3.0'
junitVersion = '4.13.1'
roboelectricVersion = '3.8'
material = "com.google.android.material:material:1.3.0"
androidxAnnotations = "androidx.annotation:annotation:1.1.0"
androidxAppCompat = "androidx.appcompat:appcompat:1.2.0"
leakCanary = "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion"
leakCanaryNoOp = "com.squareup.leakcanary:leakcanary-android-no-op:$leakCanaryVersion"
archComponentsLifecycle = "androidx.lifecycle:lifecycle-runtime:$archComponentsVersion"
archComponentsLiveDataCore = "androidx.lifecycle:lifecycle-livedata-core:$archComponentsVersion"
archComponentsLifecycleViewModel = "androidx.lifecycle:lifecycle-viewmodel:$archComponentsVersion"
junit = "junit:junit:$junitVersion"
roboelectric = "org.robolectric:robolectric:$roboelectricVersion"
}