Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Introduce a setting for auto catching exceptions when calling JS method native #1119

Closed
vtrifonov opened this issue Jul 20, 2018 · 5 comments
Assignees
Labels
Milestone

Comments

@vtrifonov
Copy link
Contributor

vtrifonov commented Jul 20, 2018

We need a setting to enable and disable catching exceptions when calling the callJSMethodNative method. If enabled those exceptions will be caught an logged without propagating them.
The default value of that setting is false, so if such an error occurs it won't be caught and if not handled somewhere else will crash the application.
The flag is disabled by default, so if you want to enable it you should add in your app/package.json file this:

{
	...
	"discardUncaughtJsExceptions": true
}
@vtrifonov vtrifonov added this to the 4.2.0 milestone Jul 20, 2018
@vtrifonov vtrifonov self-assigned this Jul 20, 2018
@vhristov5555 vhristov5555 self-assigned this Jul 20, 2018
vhristov5555 pushed a commit to NativeScript/nativescript-cli-tests that referenced this issue Jul 23, 2018
…d#1119. Also fix all tests which call nativevi dependency.
vhristov5555 pushed a commit to NativeScript/nativescript-cli-tests that referenced this issue Jul 25, 2018
…d#1119. Also fix all tests which call native dependency. (#158)

* Add tests for issue NativeScript/android#1104 and NativeScript/android#1119. Also fix all tests which call nativevi dependency.

* Remove Sleep steps.
mbektchiev added a commit to NativeScript/ios-jsc that referenced this issue Aug 2, 2018
@IAMtheIAM
Copy link

IAMtheIAM commented Sep 3, 2018

Where in package.json does this go? Top level, under nativescript: {}, somewhere else? Also, how do we know if the flag was picked up by the app or not?

@NickIliev
Copy link

@IAMtheIAM the setting should be placed in the application package.json located in the app folder

example app/package.json

{
  "android": {
    "v8Flags": "--expose_gc"
  },
  "main": "app.js",
  "name": "tns-template-hello-world-ts",
  "version": "4.1.0",
  "discardUncaughtJsExceptions":true
}

Documentation section here

@vtrifonov
Copy link
Contributor Author

@IAMtheIAM to test whether you have enabled the setting you can add throw new Error("MyError"); in a button click handler and check whether the app will crash or not when pressing the button. If the discardUncaughtJsExceptions is enabled you should only see the error in the log, if not the app would crash and show the error activity screen.

@IAMtheIAM
Copy link

IAMtheIAM commented Sep 4, 2018

Thanks guys, that is exactly the info I was looking for. I recommend it be added to some docs somewhere, just as explained here to me. I read the Nativescript 4.2 update notice but was not sure which level it should be added to.

@soscler
Copy link

soscler commented Nov 13, 2020

with nativescript angular the file is located in src/package.json

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
Projects
None yet
Development

No branches or pull requests

5 participants