Merge branch 'master' into 'master'

Move new aidl methods to the bottom to preserve compatibility with older AuroraServices versions

See merge request AuroraOSS/AuroraStore!134
This commit is contained in:
Rahul Patel
2021-07-02 22:35:05 +00:00

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
);
}