forked from mylhyl/Android-CircleDialog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gradle
27 lines (24 loc) · 860 Bytes
/
config.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
ext {
android = [
compileSdkVersion: 27,
minSdkVersion : 16,
targetSdkVersion : 27,
versionCode : 1,
versionName : "20191204"
]
dependVersion = [
support: "27.1.1"
]
dependencies = [
// support
appcompatV7 : "com.android.support:appcompat-v7:${dependVersion.support}",
recyclerview : "com.android.support:recyclerview-v7:${dependVersion.support}",
cardview : "com.android.support:cardview-v7:${dependVersion.support}",
leakcanary : "com.squareup.leakcanary:leakcanary-android:1.5.4",
lottie : "com.airbnb.android:lottie:2.5.4",
baseRvAdapter: "com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.40"
]
publish = [
version: "3.0.1"
]
}