diff --git a/README.md b/README.md index 19bb7f0..f4590ae 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ will fallback to a web based map provider (currently Google Maps). Easy to integ Grab via Gradle: ```groovy -compile 'com.airbnb.android:airmapview:1.8.0' +compile 'com.airbnb.android:airmapview:2.0.0-SNAPSHOT' ``` Snapshots of the development version are available in [Sonatype's `snapshots` repository](https://oss.sonatype.org/content/repositories/snapshots/). diff --git a/gradle.properties b/gradle.properties index ae7efc7..28d2b81 100644 --- a/gradle.properties +++ b/gradle.properties @@ -18,7 +18,7 @@ # org.gradle.parallel=true VERSION_CODE=16 -VERSION_NAME=1.9.0-SNAPSHOT +VERSION_NAME=2.0.0-SNAPSHOT GROUP=com.airbnb.android POM_DESCRIPTION=A view abstraction to provide a map user interface with varying underlying map providers. diff --git a/library/gradle-maven-push.gradle b/library/gradle-maven-push.gradle index 48f1156..066849e 100644 --- a/library/gradle-maven-push.gradle +++ b/library/gradle-maven-push.gradle @@ -93,6 +93,7 @@ afterEvaluate { project -> } task androidJavadocs(type: Javadoc) { + excludes = ['**/*.kt'] source = android.sourceSets.main.java.srcDirs classpath += project.files(android.getBootClasspath().join(File.pathSeparator)) } diff --git a/sample/build.gradle b/sample/build.gradle index bbf3395..706922c 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -16,8 +16,8 @@ android { } compileOptions { - sourceCompatibility JavaVersion.VERSION_1_7 - targetCompatibility JavaVersion.VERSION_1_7 + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 } }