Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 066e1e3c authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Git Automerger
Browse files

am dbf09fee: am eb17d6f5: Merge "Don\'t crash zygote if webcore fails to load"

* commit 'dbf09fee':
  Don't crash zygote if webcore fails to load
parents da20efd9 dbf09fee
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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.
        try {
            System.loadLibrary("webcore");
        } catch (UnsatisfiedLinkError e) {
            Log.e(LOGTAG, "Unable to load webcore library");
        }
    }

    /*