Skip to content
This repository was archived by the owner on Oct 7, 2024. It is now read-only.

Commit b009060

Browse files
author
Langston Smith
authored
Release 9.3.1 (#1365)
1 parent 2f7dec1 commit b009060

3 files changed

Lines changed: 23 additions & 16 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
Mapbox welcomes participation and contributions from everyone.
44

5+
## 9.3.1 - August 18, 2020
6+
7+
- Bumped annotation plugin to 0.9.0 #[1362](https://github.com/mapbox/mapbox-android-demo/pull/1362)
8+
- Java SDK bump to 5.4.1 #[1359](https://github.com/mapbox/mapbox-android-demo/pull/1359)
9+
- Java SDK bump to 5.3.0 #[1354](https://github.com/mapbox/mapbox-android-demo/pull/1354)
10+
- Use default marker icon #[1353](https://github.com/mapbox/mapbox-android-demo/pull/1353)
11+
- Added feature list size check in PolygonSelectToggleActivity #[1352](https://github.com/mapbox/mapbox-android-demo/pull/1352)
12+
- Light cleanup of FeatureCollection and Source initialization #[1310](https://github.com/mapbox/mapbox-android-demo/pull/1310)
13+
- Adding example of removing feature visibility with layer filter #[1308](https://github.com/mapbox/mapbox-android-demo/pull/1308)
14+
- Fixed source and layer name for ImageSourceActivity #[1298](https://github.com/mapbox/mapbox-android-demo/pull/1298)
15+
- Added mapbox token init to PlaceSelectionPluginActivity #[1351](https://github.com/mapbox/mapbox-android-demo/pull/1351)
16+
- Fixed location of MixedChinaAndGlobalStyleActivity token toast message #[1350](https://github.com/mapbox/mapbox-android-demo/pull/1350)
17+
- Updated gradle options in circle.yml file #[1349](https://github.com/mapbox/mapbox-android-demo/pull/1349)
18+
519
## 9.2.0 - May 13, 2020
620

721
- Java SDK bump to 5.2.1 #[1346](https://github.com/mapbox/mapbox-android-demo/pull/1346)

MapboxAndroidDemo/src/global/java/com/mapbox/mapboxandroiddemo/MainActivity.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ private void initializeModels() {
782782
R.string.activity_extrusions_zoom_opacity_change_description,
783783
null,
784784
new Intent(MainActivity.this, OpacityZoomChangeExtrusionKotlinActivity.class),
785-
R.string.activity_extrusions_zoom_opacity_change_url, true, BuildConfig.MIN_SDK_VERSION));
785+
R.string.activity_extrusions_zoom_opacity_change_url, false, BuildConfig.MIN_SDK_VERSION));
786786

787787
exampleItemModels.add(new ExampleItemModel(
788788
R.id.nav_plugins,
@@ -905,7 +905,7 @@ private void initializeModels() {
905905
R.string.activity_location_location_basic_pulsing_description,
906906
new Intent(MainActivity.this, LocationComponentBasicPulsingActivity.class),
907907
null,
908-
R.string.activity_location_location_basic_pulsing_url, true, BuildConfig.MIN_SDK_VERSION)
908+
R.string.activity_location_location_basic_pulsing_url, false, BuildConfig.MIN_SDK_VERSION)
909909
);
910910

911911
exampleItemModels.add(new ExampleItemModel(
@@ -914,7 +914,7 @@ private void initializeModels() {
914914
R.string.activity_location_location_custom_pulsing_description,
915915
new Intent(MainActivity.this, LocationComponentCustomPulsingActivity.class),
916916
null,
917-
R.string.activity_location_location_custom_pulsing_url, true, BuildConfig.MIN_SDK_VERSION)
917+
R.string.activity_location_location_custom_pulsing_url, false, BuildConfig.MIN_SDK_VERSION)
918918
);
919919

920920
exampleItemModels.add(new ExampleItemModel(
@@ -1212,15 +1212,15 @@ private void initializeModels() {
12121212
R.string.activity_java_services_turf_circle_poi_within_filter_description,
12131213
new Intent(MainActivity.this, TurfCirclePoiWithinFilterActivity.class),
12141214
null,
1215-
R.string.activity_java_services_turf_circle_poi_within_filter_url, true, BuildConfig.MIN_SDK_VERSION));
1215+
R.string.activity_java_services_turf_circle_poi_within_filter_url, false, BuildConfig.MIN_SDK_VERSION));
12161216

12171217
exampleItemModels.add(new ExampleItemModel(
12181218
R.id.nav_java_services,
12191219
R.string.activity_java_services_two_person_meetup_isochrone_within_title,
12201220
R.string.activity_java_services_two_person_meetup_isochrone_within_description,
12211221
new Intent(MainActivity.this, TwoPersonMeetupLocationIsochroneWithinActivity.class),
12221222
null,
1223-
R.string.activity_java_services_two_person_meetup_isochrone_within_url, true, BuildConfig.MIN_SDK_VERSION));
1223+
R.string.activity_java_services_two_person_meetup_isochrone_within_url, false, BuildConfig.MIN_SDK_VERSION));
12241224

12251225
exampleItemModels.add(new ExampleItemModel(
12261226
R.id.nav_snapshot_image_generator,
@@ -1360,7 +1360,7 @@ private void initializeModels() {
13601360
R.string.activity_lab_magic_window_description,
13611361
null,
13621362
new Intent(MainActivity.this, MagicWindowKotlinActivity.class),
1363-
R.string.activity_lab_magic_window_image_url, true, Build.VERSION_CODES.O));
1363+
R.string.activity_lab_magic_window_image_url, false, Build.VERSION_CODES.O));
13641364

13651365
exampleItemModels.add(new ExampleItemModel(
13661366
R.id.nav_lab,
@@ -1450,7 +1450,7 @@ private void initializeModels() {
14501450
R.string.activity_lab_vibrate_on_pin_drop_description,
14511451
null,
14521452
new Intent(MainActivity.this, VibrateOnPinDropKotlinActivity.class),
1453-
R.string.activity_lab_vibrate_on_pin_drop_url, true, BuildConfig.MIN_SDK_VERSION));
1453+
R.string.activity_lab_vibrate_on_pin_drop_url, false, BuildConfig.MIN_SDK_VERSION));
14541454

14551455
exampleItemModels.add(new ExampleItemModel(
14561456
R.id.nav_dds,
@@ -1677,7 +1677,7 @@ private void initializeModels() {
16771677
R.string.activity_dds_within_expression_description,
16781678
null,
16791679
new Intent(MainActivity.this, WithinExpressionActivity.class),
1680-
R.string.activity_dds_within_expression_url, true, BuildConfig.MIN_SDK_VERSION));
1680+
R.string.activity_dds_within_expression_url, false, BuildConfig.MIN_SDK_VERSION));
16811681

16821682
exampleItemModels.add(new ExampleItemModel(
16831683
R.id.nav_dds,
Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1 @@
1-
This update is part of the 9.2.0 release of the Mapbox Maps SDK for Android. New examples include:
2-
3-
- Pulsing LocationComponent circle
4-
- Vibrate on pin drop
5-
- 3D extrusions zoom-based opacity
6-
- Two person isochrone poi within filter
7-
- Within poi circle polygon filter
8-
- Within expression filter
1+
This release provides several bug fixes and improvements to existing examples

0 commit comments

Comments
 (0)