I have 32 little movie players to show short 2 second clips when the button on top of it is clicked. Each movie is around 0.5 MB in size.
Seems like the app memory demand goes up with every movie played and eventually it bombs out. It does not show as outofmemory exception or any other from the xojo list and only shows in a general catch. It also doesn’t bomb out on the Simulator.
It also does not show which, only “An exception of type RuntimeException was caught” using this code:
Catch e As RunTimeException
MessageBox(“An exception of type " + e.Type + " was caught.”)
End try
An exception of type RuntimeException was caught. That’s all, no details. Using this:
Catch e As RunTimeException
Var eType As String = IntroSpection.GetType(e).FullName
MessageBox(“An exception of type " + eType + " was caught.”)
End try