This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'maven-publish' | |
apply plugin: 'com.jfrog.bintray' | |
version '1.0' // your library version | |
group 'com.adawoud' // whatever group name you'd like | |
publishing { | |
publications { | |
Production(MavenPublication) { | |
artifact("$buildDir/outputs/aar/bottomsheettimerangepicker-release.aar") // replace with your library name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user=yourUsername | |
apiKey=yourApiKey |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dependencies { | |
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4' | |
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' | |
} |