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

Commit 365fcfce authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge changes I5f425928,I397d361f am: e57a8f33 am: c5621847

Change-Id: Id3c60837f7931e6d57372418c2ce8cad817c97cd
parents 01b172c0 c5621847
Loading
Loading
Loading
Loading
+31 −1
Original line number Diff line number Diff line
@@ -34,6 +34,36 @@ stubs_defaults {

stubs_defaults {
    name: "framework-module-stubs-defaults-systemapi",
    args: mainline_stubs_args + " --show-annotation android.annotation.SystemApi ",
    args: mainline_stubs_args +
    " --show-annotation android.annotation.SystemApi\\(" +
    "client=android.annotation.SystemApi.Client.PRIVILEGED_APPS," +
    "process=android.annotation.SystemApi.Process.ALL\\) ",
    installable: false,
}

stubs_defaults {
    name: "framework-module-stubs-defaults-module_apps_api",
    args: mainline_stubs_args +
    " --show-annotation android.annotation.SystemApi\\(" +
    "client=android.annotation.SystemApi.Client.PRIVILEGED_APPS," +
    "process=android.annotation.SystemApi.Process.ALL\\) " +
    " --show-annotation android.annotation.SystemApi\\(" +
    "client=android.annotation.SystemApi.Client.MODULE_APPS," +
    "process=android.annotation.SystemApi.Process.ALL\\) ",
    installable: false,
}

stubs_defaults {
    name: "framework-module-stubs-defaults-module_libs_api",
    args: mainline_stubs_args +
    " --show-annotation android.annotation.SystemApi\\(" +
    "client=android.annotation.SystemApi.Client.PRIVILEGED_APPS," +
    "process=android.annotation.SystemApi.Process.ALL\\) " +
    " --show-annotation android.annotation.SystemApi\\(" +
    "client=android.annotation.SystemApi.Client.MODULE_APPS," +
    "process=android.annotation.SystemApi.Process.ALL\\) " +
    " --show-annotation android.annotation.SystemApi\\(" +
    "client=android.annotation.SystemApi.Client.MODULE_LIBRARIES," +
    "process=android.annotation.SystemApi.Process.ALL\\) ",
    installable: false,
}