-
-
Notifications
You must be signed in to change notification settings - Fork 136
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
Comments
…d#1119. Also fix all tests which call nativevi dependency.
…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.
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? |
@IAMtheIAM the setting should be placed in the application package.json located in the app folder example {
"android": {
"v8Flags": "--expose_gc"
},
"main": "app.js",
"name": "tns-template-hello-world-ts",
"version": "4.1.0",
"discardUncaughtJsExceptions":true
} Documentation section here |
@IAMtheIAM to test whether you have enabled the setting you can add |
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. |
with nativescript angular the file is located in src/package.json |
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:
The text was updated successfully, but these errors were encountered: