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

Commit 2c595ac

Browse files
author
auto-submit[bot]
committed
Revert "Disable Impeller when the manifest explicitly disables it (#53108)"
This reverts commit 8da25dc.
1 parent 8f63466 commit 2c595ac

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

shell/platform/android/io/flutter/embedding/engine/loader/FlutterLoader.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -340,10 +340,8 @@ public void ensureInitializationComplete(
340340
shellArgs.add("--prefetched-default-font-manager");
341341

342342
if (metaData != null) {
343-
if (metaData.getBoolean(ENABLE_IMPELLER_META_DATA_KEY, true)) {
343+
if (metaData.getBoolean(ENABLE_IMPELLER_META_DATA_KEY, false)) {
344344
shellArgs.add("--enable-impeller");
345-
} else {
346-
shellArgs.add("--enable-impeller=false");
347345
}
348346
if (metaData.getBoolean(ENABLE_VULKAN_VALIDATION_META_DATA_KEY, false)) {
349347
shellArgs.add("--enable-vulkan-validation");

0 commit comments

Comments
 (0)