-
Notifications
You must be signed in to change notification settings - Fork 29
/
config.gradle
45 lines (39 loc) · 1.57 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
ext {
android =
[
applicationId : "com.dyhdyh.loadingbar.example",
//版本号
versionCode : 10,
versionName : "2.0.1",
//sdk版本
compileSdkVersion: 28,
buildToolsVersion: "28.0.3",
minSdkVersion : 14,
targetSdkVersion : 28,
supportVersion : "28.0.0",
]
jcenter =
[
//项目名称
name : "LoadingBar2",
groupId : "com.dyhdyh.loadingbar2",
//项目地址
siteUrl : "https://github.com/dengyuhan/LoadingBar",
//项目git地址
gitUrl : "https://github.com/dengyuhan/LoadingBar.git",
//项目描述
description: "极简使用的解耦Loading组件 - http://blog.csdn.net/aa464971/article/details/70197394",
//开发者的一些基本信息
authorId : "dengyuhan",
authorName : "dengyuhan",
authorEmail: "22309946@qq.com",
//开源协议
licenses : {
license {
name 'Apache-2.0'
url 'https://opensource.org/licenses/Apache-2.0'
}
},
licenseName: 'Apache-2.0'
]
}