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

Commit 7c5be535 authored by Arthur Ishiguro's avatar Arthur Ishiguro Committed by android-build-merger
Browse files

Merge "Adds handle to NanoAppInstanceInfo Parcel" into oc-mr1-dev

am: 0853fe8a

Change-Id: Icefb1d6d21bcebfc5b16e5ec234c9f1c6043717f
parents b39679d4 0853fe8a
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -287,8 +287,10 @@ public class NanoAppInstanceInfo {
        mPublisher = in.readString();
        mName = in.readString();

        mHandle = in.readInt();
        mAppId = in.readLong();
        mAppVersion = in.readInt();
        mContexthubId = in.readInt();
        mNeededReadMemBytes = in.readInt();
        mNeededWriteMemBytes = in.readInt();
        mNeededExecMemBytes = in.readInt();
@@ -309,6 +311,8 @@ public class NanoAppInstanceInfo {
    public void writeToParcel(Parcel out, int flags) {
        out.writeString(mPublisher);
        out.writeString(mName);

        out.writeInt(mHandle);
        out.writeLong(mAppId);
        out.writeInt(mAppVersion);
        out.writeInt(mContexthubId);