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

Commit 49f24c60 authored by Chad Brubaker's avatar Chad Brubaker
Browse files

Serialize visibleToInstantApps

Bug: 36972663
Test: Webview continues working
Change-Id: I680797f0a7edc71917aaf2e0bc56972a39847f8f
parent c01dd791
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -6172,6 +6172,7 @@ public class PackageParser {
            cpuAbiOverride = dest.readString();
            use32bitAbi = (dest.readInt() == 1);
            restrictUpdateHash = dest.createByteArray();
            visibleToInstantApps = dest.readInt() == 1;
        }

        private static void internStringArrayList(List<String> list) {
@@ -6286,6 +6287,7 @@ public class PackageParser {
            dest.writeString(cpuAbiOverride);
            dest.writeInt(use32bitAbi ? 1 : 0);
            dest.writeByteArray(restrictUpdateHash);
            dest.writeInt(visibleToInstantApps ? 1 : 0);
        }