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

Commit eb17d6f5 authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Code Review
Browse files

Merge "Don't crash zygote if webcore fails to load"

parents 056340ac c0e95048
Loading
Loading
Loading
Loading
+5 −1
Original line number Original line Diff line number Diff line
@@ -58,7 +58,11 @@ final class WebViewCore {
        // Load libwebcore during static initialization. This happens in the
        // Load libwebcore during static initialization. This happens in the
        // zygote process so it will be shared read-only across all app
        // zygote process so it will be shared read-only across all app
        // processes.
        // processes.
        try {
            System.loadLibrary("webcore");
            System.loadLibrary("webcore");
        } catch (UnsatisfiedLinkError e) {
            Log.e(LOGTAG, "Unable to load webcore library");
        }
    }
    }


    /*
    /*