forked from yanzhenjie/AndPermission
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.gradle
37 lines (29 loc) · 1.39 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
ext {
plugins = [application: 'com.android.application',
library : 'com.android.library',
maven : 'com.github.dcendents.android-maven',
bintray : 'com.jfrog.bintray']
android = [applicationId : "com.yanzhenjie.permission.sample",
compileSdkVersion: 28,
buildToolsVersion: "28.0.3",
minSdkVersion : 14,
targetSdkVersion : 28,
versionCode : 106,
versionName : "2.0.1"]
bintray = [version : "2.0.1",
siteUrl : 'https://github.com/yanzhenjie/AndPermission',
gitUrl : 'https://github.com/yanzhenjie/AndPermission.git',
group : "com.yanzhenjie.permission",
packaging : 'aar',
name : 'Permission',
description : 'Permission manager 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"]
}