Skip to content

Commit 868086b

Browse files
authored
[google_maps_flutter] Switch app-facing package to new analysis options (flutter#4716)
1 parent 4eb1769 commit 868086b

34 files changed

+489
-456
lines changed

packages/google_maps_flutter/google_maps_flutter/AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,4 @@ Aleksandr Yurkovskiy <sanekyy@gmail.com>
6464
Anton Borries <mail@antonborri.es>
6565
Alex Li <google@alexv525.com>
6666
Rahul Raj <64.rahulraj@gmail.com>
67+
Taha Tesser <tesser@gmail.com>

packages/google_maps_flutter/google_maps_flutter/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
## NEXT
1+
## 2.1.2
22

33
* Removes dependencies from `pubspec.yaml` that are only needed in `example/pubspec.yaml`
44
* Updates Android compileSdkVersion to 31.
5+
* Internal code cleanup for stricter analysis options.
56

67
## 2.1.1
78

packages/google_maps_flutter/google_maps_flutter/analysis_options.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/google_maps_flutter/google_maps_flutter/example/integration_test/google_map_inspector.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ class GoogleMapInspector {
7878
}
7979

8080
Future<Map<String, dynamic>?> getTileOverlayInfo(String id) async {
81-
return (await _channel.invokeMapMethod<String, dynamic>(
81+
return await _channel.invokeMapMethod<String, dynamic>(
8282
'map#getTileOverlayInfo', <String, String>{
8383
'tileOverlayId': id,
84-
}));
84+
});
8585
}
8686
}

0 commit comments

Comments
 (0)