-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
config.gradle
49 lines (37 loc) · 2.01 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
ext {
plugins = [library : 'com.android.library',
application: 'com.android.application',
maven : 'com.github.dcendents.android-maven',
bintray : 'com.jfrog.bintray']
android = [applicationId : "com.yanzhenjie.recyclerview.sample",
compileSdkVersion: 28,
buildToolsVersion: "28.0.3",
minSdkVersion : 14,
targetSdkVersion : 28,
versionCode : 13,
versionName : "1.3.2",]
bintray = [version : "1.3.2",
siteUrl : 'https://github.com/yanzhenjie/SwipeRecyclerView',
gitUrl : 'https://github.com/yanzhenjie/SwipeRecyclerView.git',
group : "com.yanzhenjie.recyclerview",
packaging : 'aar',
name : 'SwipeRecyclerView',
description : 'SwipeRecyclerView For Android',
licenseName : 'The Apache Software License, Version 2.0',
licenseUrl : 'http://www.apache.org/licenses/LICENSE-2.0.txt',
developerId : 'yanzhenjie',
developerName : 'yanzhenjie',
developerEmail: '[email protected]',
binrayLibrary : "",
bintrayRepo : "maven",
bintrayUser : 'yolanda',
bintrayLicense: "Apache-2.0"]
dependencies = [appCompat : 'com.android.support:appcompat-v7:28.0.0',
design : 'com.android.support:design:28.0.0',
cardView : 'com.android.support:cardview-v7:28.0.0',
recyclerView : 'com.android.support:recyclerview-v7:28.0.0',
xDesign : 'com.google.android.material:material:1.0.0',
xAppCompat : 'androidx.appcompat:appcompat:1.0.2',
xRecyclerView: 'androidx.recyclerview:recyclerview:1.0.0',
xCardView : 'androidx.cardview:cardview:1.0.0']
}