We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 056340a + c0e9504 commit eb17d6fCopy full SHA for eb17d6f
1 file changed
core/java/android/webkit/WebViewCore.java
@@ -58,7 +58,11 @@ final class WebViewCore {
58
// Load libwebcore during static initialization. This happens in the
59
// zygote process so it will be shared read-only across all app
60
// processes.
61
- System.loadLibrary("webcore");
+ try {
62
+ System.loadLibrary("webcore");
63
+ } catch (UnsatisfiedLinkError e) {
64
+ Log.e(LOGTAG, "Unable to load webcore library");
65
+ }
66
}
67
68
/*
0 commit comments