Thanks for being a part of WWDC25!

How did we do? We’d love to know your thoughts on this year’s conference. Take the survey here

Analyzing crash report

Hello,

I'm doing an update to my app already IN the app store.

The app is built using .Net Maui targeting iOS, Windows and Android.

All works fine in debug and in release on Android and Windows.

However, the app launches on my iOS devices and crashes immediately.

I really have no idea what the crash report on the device is telling me.

Attached is the .ips file if anyone can at least point me in the right direction...

Thanks

For those devs using .Net Maui and running into release-mode compiling issues...

After much fly-by-night analyzing and research compile issues, I found that if you add this to your .csproj file, you will eliminate compile-time introduced errors.

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-ios|AnyCPU'"> <MtouchUseLlvm>True</MtouchUseLlvm> <MtouchLink>SdkOnly</MtouchLink> <UseInterpreter>true</UseInterpreter> <MtouchInterpreter>all</MtouchInterpreter> </PropertyGroup>

Other issues are likely you code...

So far, problem solved, app running well in release mode on all 3 platforms. Next hurdle - getting through the various app store approvals.

Hope that helps a few devs here.

If that can help: https://discussions.unity.com/t/ios-app-crashes-seconds-after-opening-with-bug-type-309/922451

Analyzing crash report
 
 
Q