@nativescript/android 8.7.0-rc.1 → 8.7.0-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -350,7 +350,7 @@ class AndroidJsV8Inspector {
350
350
  @Override
351
351
  protected void onException(IOException exception) {
352
352
  // when the chrome inspector is disconnected by closing the tab a "Broken pipe" exception is thrown which we don't need to log, only in verbose logging mode
353
- if(!exception.getMessage().equals("Broken pipe") || currentRuntimeLogger.isEnabled()) {
353
+ if(exception != null && !exception.getMessage().equals("Broken pipe") || currentRuntimeLogger.isEnabled()) {
354
354
  if (com.tns.Runtime.isDebuggable()) {
355
355
  exception.printStackTrace();
356
356
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nativescript/android",
3
3
  "description": "NativeScript for Android using v8",
4
- "version": "8.7.0-rc.1",
4
+ "version": "8.7.0-rc.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/NativeScript/android.git"