File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ buildscript {
88 }
99 dependencies {
1010 classpath ' com.android.tools.build:gradle:3.1.0'
11+ classpath ' com.novoda:bintray-release:0.8.0'
1112
1213
1314 // NOTE: Do not place your application dependencies here; they belong
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.library'
2+ apply plugin : ' com.novoda.bintray-release'
23
34android {
45 compileSdkVersion 27
@@ -17,7 +18,28 @@ android {
1718 proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
1819 }
1920 }
21+ }
22+
23+ allprojects {
24+ tasks. withType(Javadoc ). all { enabled = false }
25+ }
26+ if (JavaVersion . current(). isJava8Compatible()) {
27+ allprojects {
28+ tasks. withType(Javadoc ) {
29+ options. addStringOption(' Xdoclint:none' , ' -quiet' )
30+ }
31+ }
32+ }
2033
34+ publish {
35+ userOrg = ' nikart'
36+ groupId = ' com.github.nikartm'
37+ artifactId = ' process-button'
38+ publishVersion = ' 1.0.0'
39+ desc = ' Android library. Animated striped button to show loading process.'
40+ licences = [' Apache-2.0' ]
41+ uploadName= ' StripedProcessButton'
42+ website = ' https://github.com/nikartm/StripedProcessButton'
2143}
2244
2345dependencies {
You can’t perform that action at this time.
0 commit comments