@nativescript/android 8.7.0-rc.1 → 8.7.0-rc.3
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.
- package/framework/app/libs/runtime-libs/nativescript-optimized-with-inspector.aar +0 -0
- package/framework/app/libs/runtime-libs/nativescript-optimized.aar +0 -0
- package/framework/app/libs/runtime-libs/nativescript-regular.aar +0 -0
- package/framework/app/src/main/java/com/tns/AndroidJsV8Inspector.java +1 -1
- package/framework/build-tools/android-metadata-generator.jar +0 -0
- package/framework/build-tools/dts-generator.jar +0 -0
- package/framework/build-tools/jsparser/js_parser.js +1 -1
- package/framework/build-tools/static-binding-generator.jar +0 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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
|
}
|
|
Binary file
|
|
Binary file
|