-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbintray_library_config.gradle
33 lines (24 loc) · 1.35 KB
/
bintray_library_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
apply plugin: 'com.jfrog.bintray'
apply plugin: 'com.github.dcendents.android-maven'
ext {
bintrayRepo = "maven"
bintrayName = "permissions-manager"
publishedGroupId = 'net.ralphpina.permissionsmanager'
libraryDescription = 'Easily manage Android Marshmallow and up runtime permissions. This library is backwards compatible. In pre-Marshmallow devices permissions are returned as given.'
siteUrl = 'https://github.com/ralphpina/Android-Permissions-Manager'
gitUrl = 'https://github.com/ralphpina/Android-Permissions-Manager.git'
// Make sure to bump versionCode and versionName in permissions_manager_android/build.gradle and README
libraryVersion = '3.0.1'
developerId = 'ralphpina'
developerName = 'Ralph Pina'
developerEmail = '[email protected]'
licenseName = 'The MIT License'
licenseUrl = 'https://opensource.org/licenses/MIT'
allLicenses = ["MIT"]
}
//Add these lines to publish library to bintray. This is the readymade scripts made by github user nuuneoi to make uploading to bintray easy.
//Place it at the end of the file
if (project.rootProject.file('local.properties').exists()) {
apply from: 'https://raw.githubusercontent.com/wajahatkarim3/JCenter-Gradle-Scripts/master/install.gradle'
apply from: 'https://raw.githubusercontent.com/wajahatkarim3/JCenter-Gradle-Scripts/master/bintray.gradle'
}