Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
### 2.12.0-rc.2

* Update Maps SDK to v11.16.0-rc.2

### 2.12.0-rc.1

* Update Maps SDK to v11.16.0-rc.1
* Fix multi-touch gestures not working in map widget when being nested in `GestureDetector`.

### 2.12.0-beta.1
Expand Down
10 changes: 5 additions & 5 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## License

Mapbox Maps for Flutter version 2.12.0-rc.1
Mapbox Maps for Flutter version 2.12.0-rc.2
Mapbox Maps Flutter SDK

Copyright © 2022 - 2025 Mapbox, Inc. All rights reserved.
Expand Down Expand Up @@ -134,7 +134,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

## License

Mapbox Maps for iOS version 11.16.0-rc.1
Mapbox Maps for iOS version 11.16.0-rc.2
Mapbox Maps iOS SDK

Copyright © 2021 - 2025 Mapbox, Inc. All rights reserved.
Expand Down Expand Up @@ -165,7 +165,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

---

### MapboxCoreMaps,11.16.0-rc.1,Mapbox ToS,Mapbox,https://www.mapbox.com/
### MapboxCoreMaps,11.16.0-rc.2,Mapbox ToS,Mapbox,https://www.mapbox.com/

```
Mapbox Core Maps version 11.0
Expand Down Expand Up @@ -1944,7 +1944,7 @@ DEALINGS IN THE SOFTWARE.

### License

Mapbox Maps for Android version 11.16.0-rc.1
Mapbox Maps for Android version 11.16.0-rc.2
Mapbox Maps Android SDK

Copyright © 2021 - 2025 Mapbox, Inc. All rights reserved.
Expand Down Expand Up @@ -2426,7 +2426,7 @@ License: [The Apache Software License, Version 2.0](http://www.apache.org/licens

===========================================================================

### MapboxCoreMaps,11.16.0-rc.1,Mapbox ToS,Mapbox,https://www.mapbox.com/
### MapboxCoreMaps,11.16.0-rc.2,Mapbox ToS,Mapbox,https://www.mapbox.com/

```
Mapbox Core Maps version 11.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Mapbox Maps SDK Flutter SDK

The Mapbox Maps SDK Flutter SDK is an officially developed solution from Mapbox that enables use of our latest Maps SDK product (v11.16.0-rc.1). The SDK allows developers to embed highly-customized maps using a Flutter widget on Android and iOS.
The Mapbox Maps SDK Flutter SDK is an officially developed solution from Mapbox that enables use of our latest Maps SDK product (v11.16.0-rc.2). The SDK allows developers to embed highly-customized maps using a Flutter widget on Android and iOS.

Web and desktop are not supported.

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ if (file("$rootDir/gradle/ktlint.gradle").exists() && file("$rootDir/gradle/lint
}

dependencies {
implementation "com.mapbox.maps:android-ndk27:11.16.0-rc.1"
implementation "com.mapbox.maps:android-ndk27:11.16.0-rc.2"

implementation "androidx.annotation:annotation:1.5.0"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.2"
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ packages:
path: ".."
relative: true
source: path
version: "2.12.0-rc.1"
version: "2.12.0-rc.2"
matcher:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions ios/mapbox_maps_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'mapbox_maps_flutter'
s.version = '2.12.0-rc.1'
s.version = '2.12.0-rc.2'

s.summary = 'Mapbox Maps SDK Flutter Plugin.'
s.description = 'An officially developed solution from Mapbox that enables use of our latest Maps SDK product.'
Expand All @@ -17,7 +17,7 @@ Pod::Spec.new do |s|
s.dependency 'Flutter'
s.platform = :ios, '14.0'

s.dependency 'MapboxMaps', '11.16.0-rc.1'
s.dependency 'MapboxMaps', '11.16.0-rc.2'
s.dependency 'Turf', '4.0.0'

# Flutter.framework does not contain a i386 slice.
Expand Down
12 changes: 6 additions & 6 deletions ios/mapbox_maps_flutter/Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ios/mapbox_maps_flutter/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let package = Package(
.library(name: "mapbox-maps-flutter", targets: ["mapbox_maps_flutter"])
],
dependencies: [
.package(url: "https://github.com/mapbox/mapbox-maps-ios.git", exact: "11.16.0-rc.1"),
.package(url: "https://github.com/mapbox/mapbox-maps-ios.git", exact: "11.16.0-rc.2"),
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion lib/src/package_info.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
part of mapbox_maps_flutter;

const String mapboxPluginVersion = '2.12.0-rc.1';
const String mapboxPluginVersion = '2.12.0-rc.2';
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: mapbox_maps_flutter
description: Interactive, thoroughly customizable maps powered by Mapbox Maps mobile SDKs.
version: 2.12.0-rc.1
version: 2.12.0-rc.2
homepage: https://github.com/mapbox/mapbox-maps-flutter

environment:
Expand Down