79454564

Date: 2025-02-20 12:52:41
Score: 0.5
Natty:
Report link

I finally found the problem.

Since Flutter 3.29 (started since 3.27), the default renderer is Impeller instead of Skia.
When building the application, the logs show the following line:
Using the Impeller rendering backend (OpenGLES)

Impeller crashes on my device (I don't know the exact reasons), but it must be disabled:
In android\app\src\main\AndroidManifest.xml, add the following block in <application>:

<meta-data
android:name="io.flutter.embedding.android.EnableImpeller"
android:value="false" />
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: JTO Informatique