File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
engine/src/flutter/impeller Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff 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 `
You can’t perform that action at this time.
0 commit comments