You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem:
Making a call to the interface constructor in JavaScript without prefixing it with the new keyword would abruptly crash the app without a stack trace or an exception message.
let r = java.lang.Runnable({ run: () => { }});
Solution:
Handle incorrect calls to interface constructors and throw a nativescript exception object with the appropriate message.
The text was updated successfully, but these errors were encountered:
Problem:
Making a call to the interface constructor in JavaScript without prefixing it with the
new
keyword would abruptly crash the app without a stack trace or an exception message.let r = java.lang.Runnable({ run: () => { }});
Solution:
Handle incorrect calls to interface constructors and throw a nativescript exception object with the appropriate message.
The text was updated successfully, but these errors were encountered: