forked from yanzhenjie/SwipeRecyclerView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.gradle
30 lines (25 loc) · 976 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
28
29
30
ext {
plugin = [
library : 'com.android.library',
application: 'com.android.application',
maven : 'com.github.dcendents.android-maven',
bintray : 'com.jfrog.bintray'
]
android = [
applicationId : "com.yanzhenjie.swiperecyclerview",
compileSdkVersion: 25,
buildToolsVersion: "25.0.2",
minSdkVersion : 14,
targetSdkVersion : 25,
versionCode : 1,
versionName : "1.0",
jackOptions : true
]
dependencies = [
appCompat : 'com.android.support:appcompat-v7:25.2.0',
design : 'com.android.support:design:25.2.0',
cardView : 'com.android.support:cardview-v7:25.2.0',
recyclerView : 'com.android.support:recyclerview-v7:25.2.0',
swipeRecyclerView: 'com.yanzhenjie:recyclerview-swipe:1.0.3'
]
}