forked from xiandanin/ActivityManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gradle
40 lines (35 loc) · 1.35 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
ext {
android =
[
versionCode : 2,
versionName : "1.0.1",
compileSdkVersion: 26,
buildToolsVersion: "26.0.2",
minSdkVersion : 14,
targetSdkVersion : 26,
supportVersion : "26.1.0",
]
jcenter =
[
//项目名称
name : "ActivityManager",
groupId : "com.dyhdyh",
//项目地址
siteUrl : "https://github.com/dengyuhan/ActivityManager",
//项目git地址
gitUrl : "https://github.com/dengyuhan/ActivityManager.git",
//项目描述
description: "一个管理所有Activity的库,可以关闭任意Activity",
//开发者的一些基本信息
authorId : "dengyuhan",
authorName : "dengyuhan",
authorEmail: "[email protected]",
licenses : {
license {
name 'MIT'
url 'https://opensource.org/licenses/MIT'
}
},
licenseName: 'MIT'
]
}