Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions library/gradle-maven-push.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}
Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

Expand Down