Skip to content

Commit c97e4ad

Browse files
authored
fix: Disable Impeller Flutter render engine correctly to fix rendering issues (#2631)
1 parent 875ce64 commit c97e4ad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

android/app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@
2828
android:largeHeap="true"
2929
android:requestLegacyExternalStorage="true"
3030
android:enableOnBackInvokedCallback="true">
31+
<meta-data
32+
android:name="io.flutter.embedding.android.EnableImpeller"
33+
android:value="false" />
3134
<activity
3235
android:name=".MainActivity"
3336
android:exported="true"
@@ -39,9 +42,6 @@
3942
<meta-data
4043
android:name="io.flutter.embedding.android.NormalTheme"
4144
android:resource="@style/NormalTheme" />
42-
<meta-data
43-
android:name="io.flutter.embedding.android.EnableImpeller"
44-
android:value="false" />
4545
<intent-filter>
4646
<action android:name="android.intent.action.MAIN" />
4747
<category android:name="android.intent.category.LAUNCHER" />

0 commit comments

Comments
 (0)