File tree Expand file tree Collapse file tree 7 files changed +13
-6
lines changed
Expand file tree Collapse file tree 7 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 1+ * @ mapbox/maps-ios @ mapbox/maps-android
Original file line number Diff line number Diff line change 1+ ### 0.5.1
2+ ### Android
3+
4+ * Fix registry token lookup failing with an unrelated error in certain circumstances.
5+
16## 0.5.0
27### Common
38
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ To use the Maps Flutter Plugin add the git dependency to the pubspec.yaml:
112112
113113```
114114dependencies:
115- mapbox_maps_flutter: ^0.5.0
115+ mapbox_maps_flutter: ^0.5.1
116116```
117117
118118### Configure permissions
Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ buildscript {
1515}
1616
1717rootProject. allprojects {
18- def token = System . getenv(" SDK_REGISTRY_TOKEN" ) ?: project. properties[' SDK_REGISTRY_TOKEN' ]
18+ def token = System . getenv(" SDK_REGISTRY_TOKEN" ) ?: project. findProperty(' SDK_REGISTRY_TOKEN' )
19+
1920 if (token == null || token. empty) {
2021 throw new Exception (" SDK Registry token is null. See README.md for more information." )
2122 }
Original file line number Diff line number Diff line change 44#
55Pod ::Spec . new do |s |
66 s . name = 'mapbox_maps_flutter'
7- s . version = '0.5.0 '
7+ s . version = '0.5.1 '
88
99 s . summary = 'Mapbox Maps SDK Flutter Plugin.'
1010 s . description = 'An officially developed solution from Mapbox that enables use of our latest Maps SDK product.'
Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ class _MapWidgetState extends State<MapWidget> {
183183 'textureView' : widget.textureView,
184184 'styleUri' : widget.styleUri,
185185 'eventTypes' : widget._eventTypes.map ((e) => e.index).toList (),
186- 'mapboxPluginVersion' : '0.5.0 '
186+ 'mapboxPluginVersion' : '0.5.1 '
187187 };
188188
189189 return _mapboxMapsPlatform.buildView (
Original file line number Diff line number Diff line change 11name : mapbox_maps_flutter
2- description : A Flutter plugin for integrating Mapbox Maps SDK v11 in Android/iOS application.
3- version : 0.5.0
2+ description : A Flutter plugin for integrating Mapbox Maps SDK v10 in Android/iOS application.
3+ version : 0.5.1
44homepage : https://github.com/mapbox/mapbox-maps-flutter
55
66environment :
You can’t perform that action at this time.
0 commit comments