-
Notifications
You must be signed in to change notification settings - Fork 851
/
config.gradle
64 lines (47 loc) · 2.79 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
ext {
plugins = [library : 'com.android.library',
application: 'com.android.application',
maven : 'com.github.dcendents.android-maven',
bintray : 'com.jfrog.bintray']
android = [applicationId : "com.yanzhenjie.nohttp.sample",
compileSdkVersion : 27,
buildToolsVersion : "27.0.3",
librayMinSdkVersion : 9,
libraryTargetSdkVersion: 27,
sampleMinSdkVersion : 14,
sampleTargetSdkVersion : 27,
versionCode : 121,
versionName : "1.1.11",]
bintray = [version : "1.1.11",
siteUrl : 'https://github.com/yanzhenjie/NoHttp',
gitUrl : '[email protected]:yanzhenjie/NoHttp.git',
group : "com.yanzhenjie.nohttp",
packaging : 'aar',
name : 'NoHttp',
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: '[email protected]',
binrayLibrary : "",
bintrayRepo : "maven",
bintrayUser : 'yolanda',
bintrayLicense: "Apache-2.0"]
dependencies = [okhttpUrl : 'com.squareup.okhttp3:okhttp-urlconnection:3.11.0',
nohttp : 'com.yanzhenjie.nohttp:nohttp:1.1.11',
okhttp : 'com.yanzhenjie.nohttp:okhttp:1.1.11',
junit : 'junit:junit:4.12',
expressoCore : 'com.android.support.test.espresso:espresso-core:3.0.2',
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-rc11',
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']
}