Created
March 3, 2016 06:03
-
-
Save chrisjyoon/cdc9ddaa2f365da1d103 to your computer and use it in GitHub Desktop.
Revisions
-
chrisjyoon created this gist
Mar 3, 2016 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ // library build.gradle apply plugin: 'com.android.library' apply plugin: 'com.novoda.bintray-release' publish { userOrg = 'user' groupId = 'package' artifactId = 'artifactId' publishVersion = '1.0' desc = 'Description for library' } This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ // project build.gradle dependencies { classpath 'com.novoda:bintray-release:0.3.4' } This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ ./gradlew clean build bintrayUpload -PbintrayUser=BINTRAY_USERNAME -PbintrayKey=BINTRAY_KEY -PdryRun=false