Skip to content

Instantly share code, notes, and snippets.

@ktvipin27
Last active July 4, 2020 11:02
Embed
What would you like to do?
library level build.gradle file for Bintray publishing
ext {
bintrayRepo = 'RoomInspector'
bintrayName = 'com.ktvipin.roominspector'
publishedGroupId = 'com.ktvipin'
libraryName = 'library'
artifact = 'roominspector'
libraryDescription = 'An in-app database inspector for Room databases.'
libraryVersion = '1.0.2'
siteUrl = 'https://github.com/ktvipin27/RoomInspector'
gitUrl = 'https://github.com/ktvipin27/RoomInspector.git'
githubRepository= 'ktvipin27/RoomInspector'
developerId = 'ktvipin27'
developerName = 'Vipin KT'
developerEmail = 'ktvipin27@gmail.com'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
apply from: 'https://raw.githubusercontent.com/ktvipin27/RoomInspector/master/library/publish.gradle'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment