Merge "Fix the parceling of the ServiceStartArgs" into udc-dev

This commit is contained in:
Jing Ji
2023-05-25 17:48:10 +00:00
committed by Android (Google) Code Review

View File

@@ -49,7 +49,7 @@ public class ServiceStartArgs implements Parcelable {
public void writeToParcel(Parcel out, int flags) {
out.writeInt(taskRemoved ? 1 : 0);
out.writeInt(startId);
out.writeInt(flags);
out.writeInt(this.flags);
if (args != null) {
out.writeInt(1);
args.writeToParcel(out, 0);