Skip to content

Commit b949611

Browse files
committed
Released v1.0.0
1 parent 382100f commit b949611

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

Library/build.gradle

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
apply plugin: 'com.android.library'
22
apply 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

419
android {
520
compileSdkVersion 25

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)