My first app crash in Testflight



Hi Everyone,

This is my first app on IOS, sorry I need more time to understand the reports. I tested my app with the simulator and works fine, but when I upload and test it in the TestFlight app it crashes.

I get the Crash report but i can't find the main reason of the crash
any help will be much appreciated
my code when its crash :

Code Block
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Triggered by Thread: 0


I attach the full report, but i think that the Thread 0 is the main reason.

Thanks very much and sorry, step by step i will understand the crash reports.
A SIGABRT means something called the abort function. There are two reasons for this, either there was an unhandled language exception from Objective-C, or something directly called the abort function.

Code Block
2 libsystem_c.dylib 0x000000018e13eb90 abort + 104 (abort.c:110)
3 Flutter 0x0000000101d7beec 0x101aa8000 + 2965228


In this crash, it's the second reason — something in Flutter directly called abort. You should fully symbolicate the crash so you can see the symbol names, and then contact Flutter's support channel for help with their framework aborting.

My first app crash in Testflight
 
 
Q