Preview 2.0 is now in Public Beta!
Read the Announcement
Note: You are on the beta version of our docs. This is a work in progress and may contain broken links and pages.
UnhandledErrorEventData
interface UnhandledErrorEventData extends ApplicationEventData {
  android: NativeScriptError;
  error: NativeScriptError;
  ios: NativeScriptError;
}
Event data containing information about unhandled application errors.

Summary

Properties

android
error
ios
2 properties inherited from ApplicationEventData
Click to expand

Properties

android

Gets the native Android event arguments. Valid only when running on Android.

ios

Gets the native iOS event arguments. Valid only when running on iOS.
Previous
TraceWriter