0.17.0
#325
Replies: 1 comment 1 reply
-
Is this going on pub.dev? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
0.17.0
Note: this list only contains a subset of all contributions, notably excluding those that e.g. only affect the GitHub Actions CI or documentation. See the link at the end for a full changelog.
Repository transfer: The project repository was transferred to the MapLibre GitHub organization. More information at #221
Breaking Changes:
maplibre_gl/mapbox_gl.dart
was renamed tomaplibre_gl/maplibre_gl.dart
. You can do a replace-all fromimport 'package:maplibre_gl/mapbox_gl.dart';
toimport 'package:maplibre_gl/maplibre_gl.dart';
useDelayedDisposal
was removed since its now fixed in 182-disposal-null-ref-crash #259useHybridCompositionOverride
was removed since it was added in the following fix: Fix crash android dispose nullpointerdereference #203 and we reverted the fix and used another approach to fix the actual issue.myLocationRenderMode
was changed fromCOMPASS
toNORMAL
in 243-fix-crash-when-no-location-permission #244, since the previous default value ofCOMPASS
implicitly enables displaying the location on iOS, which could crash apps that didn't want to display the device location. If you want to continue to useMyLocationRenderMode.COMPASS
, please explicitly specify it in the constructor like this:registerWith
was removed from the MapboxMapsPlugin.java, since there is no need for that.minSdkVersion
was bumped to at least 21 now, since the native android sdk constraint expect that.2.12.0
to2.14.0
inmaplibre_gl_platform_interface/pubspec.yaml
.Further changes
updateImageSource
. by @CaviarChen in AddupdateImageSource
. #271New Contributors
updateImageSource
. #271Full Changelog: 0.16.0...0.17.0
This discussion was created from the release 0.17.0.
Beta Was this translation helpful? Give feedback.
All reactions