Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit f970217

Browse files
committed
Merge remote-tracking branch 'upstream/main' into issue/94011
2 parents 7c834f6 + 6ed6b61 commit f970217

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+786
-748
lines changed

.ci/flutter_master.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
377d7d768df19a730b8296165919773cc22be1fe
1+
87f5f4685c6239d66455f7253210de29a82182ab

.cirrus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
gcp_credentials: ENCRYPTED[!cc769765170bebc37e0556e2da5915ca64ee37f4ec8c966ec147e2f59578b476c99e457eafce4e2f8b1a4e305f7096b8!]
1+
gcp_credentials: ENCRYPTED[!2c88dee9c9d9805b214c9f7ad8f3bc8fae936cdb0f881d562101151c408c7e024a41222677d5831df90c60d2dd6cd80a!]
22

33
# Don't run on release tags since it creates O(n^2) tasks where n is the
44
# number of plugins

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 <[email protected]>
6464
Anton Borries <[email protected]>
6565
6666
Rahul Raj <[email protected]>
67+
Taha Tesser <[email protected]>

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)