Move new aidl methods to the bottom to preserve compatibility

This commit is contained in:
Konstantin Tuev
2021-06-30 11:52:01 +03:00
parent bcdfb2b8f7
commit 5591c77311

View File

@@ -22,8 +22,6 @@ interface IPrivilegedService {
boolean hasPrivilegedPermissions();
boolean isMoreMethodImplemented();
oneway void installPackage(
in Uri packageURI,
in int flags,
@@ -54,15 +52,6 @@ interface IPrivilegedService {
in IPrivilegedCallback callback
);
oneway void installSplitPackageMore(
in String packageName,
in List<Uri> uriList,
in int flags,
in String installerPackageName,
in IPrivilegedCallback callback,
in List<String> fileList
);
oneway void deletePackage(
in String packageName,
in int flags,
@@ -75,4 +64,15 @@ interface IPrivilegedService {
in String installerPackageName,
in IPrivilegedCallback callback
);
boolean isMoreMethodImplemented();
oneway void installSplitPackageMore(
in String packageName,
in List<Uri> uriList,
in int flags,
in String installerPackageName,
in IPrivilegedCallback callback,
in List<String> fileList
);
}