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`