We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e20b4a1 commit 0024df9Copy full SHA for 0024df9
add_to_app/multiple_flutters/multiple_flutters_android/app/src/main/AndroidManifest.xml
@@ -37,6 +37,15 @@
37
android:hardwareAccelerated="true"
38
android:windowSoftInputMode="adjustResize"
39
/>
40
+ <!-- Whether leave or clean up the VM after the last shell shuts down. If your want to let
41
+ your app destroy the last shell and re-create shells more quickly, set it to true,
42
+ otherwise if you want to clean up the memory of the leak VM, set it to false.
43
+ (This setting works after the Flutter 2.10 stable version.)
44
+ View https://github.com/flutter/flutter/issues/95903 for more detail. -->
45
+ <meta-data
46
+ android:name="io.flutter.embedding.android.LeakVM"
47
+ android:value="false"
48
+ />
49
</application>
50
51
</manifest>
0 commit comments