-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gradle
39 lines (31 loc) · 1.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
ext {
// Sdk and tools
compileSdkVersion = 27
buildToolsVersion = '27.0.2'
minSdkVersion = 16
targetSdkVersion = 27
// Libs dependencies
supportLibraryVersion = '27.0.2'
junitVersion = '4.12'
runnerVersion = '1.0'
espressoVersion = '3.0.1'
// version
versionCode = '111'
// Bin-tray
bintrayRepo = 'maven'
bintrayName = 'RexHttp'
publishedGroupId = 'cn.byk.pandora'
artifact = 'rexhttp'
libraryName = 'RexHttp'
libraryVersion = '1.1.1'
libraryDescription = 'Http Lib Base on Retrofit/RxJava/OkHttp'
siteUrl = 'https://github.com/bluesofy/RexHttp'
gitUrl = 'https://github.com/bluesofy/RexHttp.git'
javaDocUrl = 'https://github.com/bluesofy/RexHttp/tree/master/rexhttp/docs/javadoc'
developerId = 'bluesofy'
developerName = 'Byk'
developerEmail = 'bluesofy@live.cn'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}