* commit 'dbf09feee0ba7210dadebbbb4cf7e7248f4ea634': Don't crash zygote if webcore fails to load
This commit is contained in:
committed by
Android Git Automerger
commit
066e1e3cc6
@@ -58,7 +58,11 @@ final class WebViewCore {
|
||||
// Load libwebcore during static initialization. This happens in the
|
||||
// zygote process so it will be shared read-only across all app
|
||||
// processes.
|
||||
System.loadLibrary("webcore");
|
||||
try {
|
||||
System.loadLibrary("webcore");
|
||||
} catch (UnsatisfiedLinkError e) {
|
||||
Log.e(LOGTAG, "Unable to load webcore library");
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user