From 8273197bc7fa527c4ce9309bba1b54bbbf23257e Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Tue, 7 Jan 2025 11:43:53 -0800 Subject: [PATCH] [Impeller] Update README on preview status on Android. (#161253) --- engine/src/flutter/impeller/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/engine/src/flutter/impeller/README.md b/engine/src/flutter/impeller/README.md index 4cf82c5913..14c00d4fa9 100644 --- a/engine/src/flutter/impeller/README.md +++ b/engine/src/flutter/impeller/README.md @@ -193,20 +193,20 @@ under the top-level `` tag: ### Android -Impeller is in preview on Android. - -To your `AndroidManifest.xml` file, add under the `` tag: +Impeller will use Vulkan on Android by **default**. To explicitly opt out of using Impeller, +add the following to your `AndroidManifest.xml` under the `` tag. ```xml + android:value="false" /> ``` -Impeller will use Vulkan on Android by default when opted into. Where Vulkan -is unavailable, Impeller will fallback to Skia. However, Impellers OpenGL backend -is well under construction. To try that with your application, add the following -under the `` tag: +Where Vulkan is unavailable, Impeller will fallback to Skia. + +However, Impellers OpenGL backend is well under construction. To try Impeller with OpenGL +in your application, add the following to your `AndroidManifest.xml` file under the +`` tag: > [!Warning] > Selecting the Impeller backend this way will only work in `debug` and `profile`