In release mode, I have an app that does not have a starter service. I intentionally invoked a calculation that has a blank string. The error I got: java.lang.NumberFormatException: Invalid double: "" which is what it is supposed to show. That is fine and dandy.
I added the default starter service to it and compiled it again in release mode. The error I got : Unfortunately, B4A Example has stopped
It seems to me that the first compilation without the Starter service gave me a much better sense of what the error is than the one with the starter service. Can someone explain to me the advantage of a Default Starter service that everyone is bragging about. What is the advantage of having this sub as the only code in it:
I added the default starter service to it and compiled it again in release mode. The error I got : Unfortunately, B4A Example has stopped
It seems to me that the first compilation without the Starter service gave me a much better sense of what the error is than the one with the starter service. Can someone explain to me the advantage of a Default Starter service that everyone is bragging about. What is the advantage of having this sub as the only code in it:
B4X:
Sub Application_Error (Error As Exception, StackTrace As String) As Boolean
Return True
End Sub