forked from yanzhenjie/Album
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gradle
68 lines (54 loc) · 2.27 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
ext {
plugins = [
library : 'com.android.library',
application: 'com.android.application',
maven : 'com.github.dcendents.android-maven',
bintray : 'com.jfrog.bintray'
]
android = [
applicationId : "com.yanzhenjie.album.sample",
compileSdkVersion: 26,
buildToolsVersion: "26.0.3",
minSdkVersion : 14,
targetSdkVersion : 26,
versionCode : 22,
versionName : "2.0.2",
]
bintray = [
version : "2.0.2",
siteUrl : 'https://github.com/yanzhenjie/Album',
gitUrl : '[email protected]:yanzhenjie/Album.git',
group : "com.yanzhenjie",
// project
packaging : 'aar',
name : 'Album',
description : 'Album for android',
// project.license
licenseName : 'The Apache Software License, Version 2.0',
licenseUrl : 'http://www.apache.org/licenses/LICENSE-2.0.txt',
// project.developers
developerId : 'yanzhenjie',
developerName : 'yanzhenjie',
developerEmail: '[email protected]',
// bintray
binrayLibrary : "Album",
bintrayRepo : "maven",
bintrayUser : 'yolanda',
bintrayLicense: "Apache-2.0"
]
dependencies = [
junit : 'junit:junit:4.12',
expressoCore: 'com.android.support.test.espresso:espresso-core:2.2.2',
design : 'com.android.support:design:26.1.0',
appCompat : 'com.android.support:appcompat-v7:26.1.0',
recyclerView: 'com.android.support:recyclerview-v7:26.1.0',
cardView : 'com.android.support:cardview-v7:26.1.0',
fragment : 'com.yanzhenjie:fragment:1.0.1',
mediaScanner: 'com.yanzhenjie:mediascanner:1.0.3',
loading : 'com.yanzhenjie:loading:1.0.2',
statusView : 'com.yanzhenjie:statusview:1.0.3',
album : 'com.yanzhenjie:album:2.0.2',
picasso : 'com.squareup.picasso:picasso:2.5.2',
glide : 'com.github.bumptech.glide:glide:3.8.0',
]
}