Skip to content

Commit b9a30af

Browse files
author
Cameron Mace
authored
Location Layer 0.4 release (#314)
* publish release * revert version back to snapshoit * updated changelog * Updated readme
1 parent 74f4726 commit b9a30af

File tree

4 files changed

+23
-14
lines changed

4 files changed

+23
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Each Mapbox plugin for Android has a separate changelog that highlights changes relevant to the plugin:
44

5-
* [Location layer plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/locationlayer/CHANGELOG.md)
6-
* [Building plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/building/CHANGELOG.md)
7-
* [Traffic plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/traffic/CHANGELOG.md)
8-
* [GeoJSON plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/geojson/CHANGELOG.md)
5+
* [Location layer plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/plugin-locationlayer/CHANGELOG.md)
6+
* [Building plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/plugin-building/CHANGELOG.md)
7+
* [Traffic plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/plugin-traffic/CHANGELOG.md)
8+
* [GeoJSON plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/plugin-geojson/CHANGELOG.md)

plugin-locationlayer/CHANGELOG.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,19 @@
22

33
Mapbox welcomes participation and contributions from everyone.
44

5-
### 0.4.0 - TBD
6-
- Assets have be updated and added a 3D effect []()
7-
- Fixed issue with accuracy ring being initialized with value greater than zero []()
8-
- `lastLocation()` now returns the location variable directly []()
5+
### 0.5.0 - TBD
6+
- Location layer accuracy visibility issue fix [#306](https://github.com/mapbox/mapbox-plugins-android/pull/306)
7+
8+
### 0.4.0 - February 26, 2018
9+
- LocationLayerOptions class added allowing dynamic styling of layer [#267](https://github.com/mapbox/mapbox-plugins-android/pull/267)
10+
- Stale location mode added [#264](https://github.com/mapbox/mapbox-plugins-android/pull/264)
11+
- Assets have be updated and added a 3D effect [#245](https://github.com/mapbox/mapbox-plugins-android/pull/245)
12+
- All assets and attributes are now prefixed [#263](https://github.com/mapbox/mapbox-plugins-android/pull/263)
13+
- Fixed issue with accuracy ring being initialized with value greater than zero [#245](https://github.com/mapbox/mapbox-plugins-android/pull/245)
14+
- `lastLocation()` now returns the location variable directly [#245](https://github.com/mapbox/mapbox-plugins-android/pull/245)
15+
- Replacing LocationEngine now updates the listener to use the new engine [#292](https://github.com/mapbox/mapbox-plugins-android/pull/292)
16+
- Cancel animation as part of stopping the animation [#247](https://github.com/mapbox/mapbox-plugins-android/pull/247)
17+
918

1019
### 0.3.0 - December 22, 2017
1120
- Change accuracy ring from fill layer to a circle layer [#186](https://github.com/mapbox/mapbox-plugins-android/pull/186)

plugin-locationlayer/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ To use the location layer plugin, you include it in your `build.gradle` file.
1010
// In the root build.gradle file
1111
repositories {
1212
mavenCentral()
13-
maven { url 'https://maven.google.com' }
13+
google()
1414
}
1515
1616
...
1717
1818
// In the app build.gradle file
1919
dependencies {
20-
compile 'com.mapbox.mapboxsdk:mapbox-android-plugin-locationlayer:0.3.0'
20+
implementation 'com.mapbox.mapboxsdk:mapbox-android-plugin-locationlayer:0.4.0'
2121
}
2222
```
2323

@@ -27,15 +27,15 @@ The location layer plugin is published to Maven Central and nightly SNAPSHOTs ar
2727
// In the root build.gradle file
2828
repositories {
2929
mavenCentral()
30-
maven { url 'https://maven.google.com' }
30+
google()
3131
maven { url "http://oss.sonatype.org/content/repositories/snapshots/" }
3232
}
3333
3434
...
3535
3636
// In the app build.gradle file
3737
dependencies {
38-
compile 'com.mapbox.mapboxsdk:mapbox-android-plugin-locationlayer:0.4.0-SNAPSHOT'
38+
implementation 'com.mapbox.mapboxsdk:mapbox-android-plugin-locationlayer:0.5.0-SNAPSHOT'
3939
}
4040
```
4141

@@ -47,7 +47,7 @@ dependencies {
4747

4848
## Help and Usage
4949

50-
This repository includes an app that shows how to use each plugins in this repository. [Check out its code](https://github.com/mapbox/mapbox-plugins-android/tree/master/plugins/app/src/main/java/com/mapbox/mapboxsdk/plugins/testapp) for ready-to-use snippets.
50+
This repository includes an app that shows how to use each plugins in this repository. [Check out its code](https://github.com/mapbox/mapbox-plugins-android/tree/master/app/src/main/java/com/mapbox/mapboxsdk/plugins/testapp) for ready-to-use snippets.
5151

5252
We'd love to [hear your feedback](https://github.com/mapbox/mapbox-plugins-android/issues) as we build more plugins and learn how you use them.
5353

plugin-locationlayer/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=0.4.0-SNAPSHOT
1+
VERSION_NAME=0.5.0-SNAPSHOT
22
POM_ARTIFACT_ID=mapbox-android-plugin-locationlayer
33
POM_NAME=Mapbox Android Plugins
44
POM_DESCRIPTION=Mapbox Android Plugins (Location Layer)

0 commit comments

Comments
 (0)