Home > Software engineering >  Flutter app crash only on Xperia 10 III, how to simulate on android studio?
Flutter app crash only on Xperia 10 III, how to simulate on android studio?

Time:07-11

I tested my app bundle with firebase test lab, on some device and I test also with my real device at home and with friends. All run are OK except an Sony Xperia 10 III

Version Android : 12

Version de bande de base : bitra.gen-00411-25,bitra.gen-00411-25

Version du noyau : 4.19.157-perf #1 Fri Apr 22 19:25:04 JST 2022

Numéro de build : 62.1.A.0.587 release-keys

How can I simulate this device on android studio ? Thank you

CodePudding user response:

Add sentry package then run the test it report the exception/problem to your dashboard so you can debug it

CodePudding user response:

Can you check manifest file for activity tag's property "android:exported" ="true" or for other activities or services declared in manifest file ?

As from Android 12 thats needed for activities and services to declare with this property.

EDIT

You can simulate by taking android-12 for simulator

  • Related