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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.9.0 Jul 16, 2019

* Fix crash from OnMapInitializedListener being called before map is laid out (PR #134)

* Migrate Google Map tile api to `https` (PR #129)

# 1.8.0 Aug 7, 2018

* Added support for marker z-index (PR #126)
Expand Down
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:1.9.0'
```

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=1.9.0
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