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

Commit b3149440 authored by Android Build Merger (Role)'s avatar Android Build Merger (Role) Committed by Android (Google) Code Review
Browse files

Merge "Merge "Serialize visibleToInstantApps" into oc-dev am: 63cb740b am: 6bf9fdc9"

parents db16d8c5 a2853b79
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);
        }