Merge "Fixing some AIDL warnings." into sc-dev

This commit is contained in:
Alex Buynytskyy
2021-02-26 00:00:25 +00:00
committed by Android (Google) Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ import android.content.pm.DataLoaderType;
* @hide
*/
parcelable DataLoaderParamsParcel {
DataLoaderType type;
DataLoaderType type = DataLoaderType.NONE;
@utf8InCpp String packageName;
@utf8InCpp String className;
@utf8InCpp String arguments;

View File

@@ -24,7 +24,7 @@ import android.content.pm.InstallationFileLocation;
*/
parcelable InstallationFileParcel {
String name;
InstallationFileLocation location;
InstallationFileLocation location = InstallationFileLocation.UNKNOWN;
long size;
byte[] metadata;
byte[] signature;