File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 11apply plugin : ' com.android.library'
22apply plugin : ' kotlin-android'
3+ apply plugin : ' com.novoda.bintray-release'
4+
5+ publish {
6+ userOrg = ' boxresin'
7+ groupId = ' boxresin.library'
8+ artifactId = ' AndroidThreadSwitcher'
9+ publishVersion = ' 1.0.0'
10+ desc = ' A handy android library to make it easy to switch between UI and Worker thread'
11+ website = ' https://github.com/BoxResin/AndroidThreadSwitcher'
12+ }
13+
14+ // Prevent an error that gradle can't generate java-docs from '*.kt' files.
15+ tasks. withType(Javadoc ). all {
16+ enabled = false
17+ }
318
419android {
520 compileSdkVersion 25
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ buildscript {
77 }
88 dependencies {
99 classpath ' com.android.tools.build:gradle:2.3.3'
10+ classpath ' com.novoda:bintray-release:0.5.0'
1011 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
1112
1213 // NOTE: Do not place your application dependencies here; they belong
You can’t perform that action at this time.
0 commit comments