forked from yanzhenjie/Kalle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.gradle
72 lines (55 loc) · 2.63 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
69
70
71
72
ext {
plugins = [
library: 'com.android.library',
android: 'com.android.application',
maven : 'com.github.dcendents.android-maven',
bintray: 'com.jfrog.bintray'
]
android = [
applicationId : "com.yanzhenjie.kalle.sample",
compileSdkVersion : 27,
buildToolsVersion : "27.0.3",
librayMinSdkVersion: 9,
sampleMinSdkVersion: 14,
targetSdkVersion : 27,
versionCode : 3,
versionName : "0.1.3",
testRunner : "android.support.test.runner.AndroidJUnitRunner"
]
bintray = [
version : "0.1.3",
siteUrl : 'https://github.com/yanzhenjie/Kalle',
gitUrl : 'git@github.com:yanzhenjie/Kalle.git',
group : "com.yanzhenjie",
packaging : 'aar',
name : 'Kalle',
description : 'Synchronous and asynchronous network request framework 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: 'smallajax@foxmail.com',
binrayLibrary : "",
bintrayRepo : "maven",
bintrayUser : 'yolanda',
bintrayLicense: "Apache-2.0"
]
dependencies = [
kalle : 'com.yanzhenjie:kalle:0.1.3',
okalle : 'com.yanzhenjie:okalle:0.1.3',
junit : 'junit:junit:4.12',
expressoCore : 'com.android.support.test.espresso:espresso-core:3.0.2',
okhttpUrl : 'com.squareup.okhttp3:okhttp-urlconnection:3.10.0',
appCompat : 'com.android.support:appcompat-v7:27.1.1',
design : 'com.android.support:design:27.1.1',
cardView : 'com.android.support:cardview-v7:27.1.1',
recyclerView : 'com.yanzhenjie:recyclerview-swipe:1.1.4',
fastjson : 'com.alibaba:fastjson:1.1.68.android',
permission : 'com.yanzhenjie:permission:2.0.0-rc5',
loading : 'com.yanzhenjie:loading:1.0.2',
album : 'com.yanzhenjie:album:2.1.1',
glide : 'com.github.bumptech.glide:glide:3.8.0',
butterKnife : 'com.jakewharton:butterknife:8.8.1',
butterKnifeCompiler: 'com.jakewharton:butterknife-compiler:8.8.1',
]
}