Skip to content

Commit 35e2f68

Browse files
authored
Merge branch 'main' into mai/MAPSFLT-130_migrate-ios-v11
2 parents 7713fd3 + ffb7b74 commit 35e2f68

File tree

7 files changed

+13
-6
lines changed

7 files changed

+13
-6
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @mapbox/maps-ios @mapbox/maps-android

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ To use the Maps Flutter Plugin add the git dependency to the pubspec.yaml:
112112

113113
```
114114
dependencies:
115-
mapbox_maps_flutter: ^0.5.0
115+
mapbox_maps_flutter: ^0.5.1
116116
```
117117

118118
### Configure permissions

android/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ buildscript {
1515
}
1616

1717
rootProject.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
}

ios/mapbox_maps_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::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.'

lib/src/map_widget.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: 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
44
homepage: https://github.com/mapbox/mapbox-maps-flutter
55

66
environment:

0 commit comments

Comments
 (0)