Skip to content

Commit 7dd395e

Browse files
authored
[google_maps_flutter] Fix detection of WebAssembly compatibility (#8102)
1 parent 319fe77 commit 7dd395e

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

packages/google_maps_flutter/google_maps_flutter/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## NEXT
1+
## 2.10.0
22

3-
* Updates minimum supported SDK version to Flutter 3.19/Dart 3.3.
3+
* Updates minimum supported SDK version to Flutter 3.22/Dart 3.4.
4+
* Fixes detection of WebAssembly support on package site.
45

56
## 2.9.0
67

packages/google_maps_flutter/google_maps_flutter/lib/google_maps_flutter.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
library google_maps_flutter;
66

77
import 'dart:async';
8-
import 'dart:io';
98

109
import 'package:flutter/foundation.dart';
1110
import 'package:flutter/gestures.dart';

packages/google_maps_flutter/google_maps_flutter/lib/src/google_map.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,6 @@ class _GoogleMapState extends State<GoogleMap> {
594594

595595
/// Builds a [MapConfiguration] from the given [map].
596596
MapConfiguration _configurationFromMapWidget(GoogleMap map) {
597-
assert(!map.liteModeEnabled || Platform.isAndroid);
598597
return MapConfiguration(
599598
webGestureHandling: map.webGestureHandling,
600599
compassEnabled: map.compassEnabled,

packages/google_maps_flutter/google_maps_flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: google_maps_flutter
22
description: A Flutter plugin for integrating Google Maps in iOS and Android applications.
33
repository: https://github.com/flutter/packages/tree/main/packages/google_maps_flutter/google_maps_flutter
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
5-
version: 2.9.0
5+
version: 2.10.0
66

77
environment:
88
sdk: ^3.4.0

0 commit comments

Comments
 (0)