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

Commit cfd04603 authored by Jooyung Han's avatar Jooyung Han Committed by Gerrit Code Review
Browse files

Merge changes from topic "staged-apex"

* changes:
  Make packagemanager_aidl available to Virt APEX
  getStagedApexInfo() returns @nullable
parents 9243f909 fc62269a
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -303,6 +303,14 @@ aidl_interface {
        "aidl/android/content/pm/ApexStagedEvent.aidl",
        "aidl/android/content/pm/StagedApexInfo.aidl",
    ],
    backend: {
        rust: {
            apex_available: [
                "com.android.virt",
            ],
            enabled: true,
        },
    },
}

aidl_interface {
+1 −1
Original line number Diff line number Diff line
@@ -144,5 +144,5 @@ interface IPackageManagerNative {
     * Get information of APEX which is staged ready for installation.
     * Returns null if no such APEX is found.
     */
    StagedApexInfo getStagedApexInfo(in @utf8InCpp String moduleName);
    @nullable StagedApexInfo getStagedApexInfo(in @utf8InCpp String moduleName);
}