Skip to content

Commit 8273197

Browse files
authored
[Impeller] Update README on preview status on Android. (#161253)
1 parent e3b301f commit 8273197

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

engine/src/flutter/impeller/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -193,20 +193,20 @@ under the top-level `<dict>` tag:
193193

194194
### Android
195195

196-
Impeller is in preview on Android.
197-
198-
To your `AndroidManifest.xml` file, add under the `<application>` tag:
196+
Impeller will use Vulkan on Android by **default**. To explicitly opt out of using Impeller,
197+
add the following to your `AndroidManifest.xml` under the `<application>` tag.
199198

200199
```xml
201200
<meta-data
202201
android:name="io.flutter.embedding.android.EnableImpeller"
203-
android:value="true" />
202+
android:value="false" />
204203
```
205204

206-
Impeller will use Vulkan on Android by default when opted into. Where Vulkan
207-
is unavailable, Impeller will fallback to Skia. However, Impellers OpenGL backend
208-
is well under construction. To try that with your application, add the following
209-
under the `<application>` tag:
205+
Where Vulkan is unavailable, Impeller will fallback to Skia.
206+
207+
However, Impellers OpenGL backend is well under construction. To try Impeller with OpenGL
208+
in your application, add the following to your `AndroidManifest.xml` file under the
209+
`<application>` tag:
210210

211211
> [!Warning]
212212
> Selecting the Impeller backend this way will only work in `debug` and `profile`

0 commit comments

Comments
 (0)