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

Commit 7e365888 authored by Ziad Youssef's avatar Ziad Youssef
Browse files

Ensure zygote process is killed when webview provider changes

Test: Checked that webview is working after uninstalling from the playstore

Bug: 330762684
Bug: 308907090

Change-Id: I45f0a3c63c06e9fbe4b3a4f4e635dec29c5abe7f
parent 2d42327f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -104,7 +104,8 @@ public class WebViewZygote {
            sPackage = packageInfo;

            // If multi-process is not enabled, then do not start the zygote service.
            if (!sMultiprocessEnabled) {
            // Only check sMultiprocessEnabled if updateServiceV2 is not enabled.
            if (!updateServiceV2() && !sMultiprocessEnabled) {
                return;
            }