codeplay-common 1.3.9 → 1.4.0
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.
|
@@ -233,13 +233,13 @@ const newCode = `@Override
|
|
|
233
233
|
if (!result) {
|
|
234
234
|
// If no one handled it, handle it ourselves!
|
|
235
235
|
|
|
236
|
-
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
|
236
|
+
/*if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
|
237
237
|
if (detail.didCrash()) {
|
|
238
238
|
//Log.e("CapacitorWebView", "WebView crashed internally!");
|
|
239
239
|
} else {
|
|
240
240
|
//Log.w("CapacitorWebView", "WebView was killed by system (low memory) internally!");
|
|
241
241
|
}
|
|
242
|
-
}
|
|
242
|
+
}*/
|
|
243
243
|
|
|
244
244
|
view.post(() -> {
|
|
245
245
|
Toast.makeText(view.getContext(), "Reloading due to low memory issue", Toast.LENGTH_SHORT).show();
|