Skip to content

Commit 869f887

Browse files
Roll to 9d5ede0, disabling impeller for google_maps_flutter_android (#7294)
Attempts to unblock the flutter/flutter->flutter/packages roll, which is many days behind now, by turning off impeller in `google_maps_flutter_android` temporarily until flutter/flutter#152691 is fixed, so that we can roll past the commit that enabled it by default. The alternative would be turn off device testing of `google_maps_flutter*`, but we've never been able to turn that test on for emulators so that would remove all `google_maps_flutter*` on Android, which is worse from the standpoint of things we need to test in this repo. There are a number of non-trivial changes happening to that package, so we need integration test coverage.
1 parent 9d33722 commit 869f887

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.ci/flutter_master.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e2e43987c4fb5803c59d7ceb5048cf08bd22cffe
1+
9d5ede0f5ae511cb3b2f6de2ab9164a428db418e

packages/google_maps_flutter/google_maps_flutter_android/example/android/app/src/main/AndroidManifest.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
66

77
<application android:label="google_maps_flutter_example" android:icon="@mipmap/ic_launcher">
8-
<meta-data
8+
<!-- Temporary workaround for https://github.com/flutter/flutter/issues/152691 -->
9+
<meta-data
10+
android:name="io.flutter.embedding.android.EnableImpeller"
11+
android:value="false" />
12+
<meta-data
913
android:name="com.google.android.gms.version"
1014
android:value="@integer/google_play_services_version" />
1115
<!-- Update this value to your google maps api key. -->

0 commit comments

Comments
 (0)