Search Issue Tracker
Fixed in 5.1.3
Votes
7
Found in
Issue ID
708527
Regression
No
IL2CPP doesn't call AppDomain.UnhandledException when "Fast but no Exceptions" is set.
iOS with player setting "Script Call Optimization" set to "Fast but no Exceptions" running on Mono backend catches null exceptions and calls AppDomain.UnhandledException, which allows apps to trigger crash reports. IL2CPP catches the exception and ignores it.
To reproduce:
1) Create new project with script:
void OnGUI() {
if (GUILayout.Button("CRASH", GUILayout.Width(300.0f), GUILayout.Height(200.0f))) {
object o = null;
o.ToString();
}
}
2) In player settings set:
- "Script Call Optimization" to "Fast but no Exceptions".
- "On .Net UnhandledException" to "Crash".
3) Build and upload app to device.
4) Run app without Xcode attached.
5) Click "Crash" button.
Result: app keeps running.
Expected: app crashes, and inspecting generated crash log through Xcode's Devices tool should show CrashedCheckBellowForHintsWhy() being last on the callstack.
Comments (4)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Slightly transparent objects disappear completely in Web Player when using RenderGraph
- Visual Scripting Components are hidden behind a throbber when Multiplayer Play Mode is running with at least one local instance
- Video Player does not throw an error when playing a video with unsupported encoding settings
- Errors indicating that TMP Extras were not Imported logged when opening the Render Pipeline Converter Window while in Play Mode
- IL2CPP Player crash on VisualElement_get_hierarchy when calling VisualElement.Add in the Start() method
JoshPeterson
Jul 08, 2015 10:47
We've landed a fix for this bug internally now. It should be available in 4.6.7p2 and 5.1.2p1.
nsejosh
Jun 29, 2015 19:25
Yes, every ios app that care about reporting crashes. which should be every one.
caecus
Jun 29, 2015 19:16
Any fix to this issue is good, but the best one would be such that we could get the actual il2cpp exceptions properly reported as well.
caecus
Jun 29, 2015 19:13
This is another issue that I'm pretty sure affects every iOS app. I can't believe theres no votes on it...