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

Commit 8633fd11 authored by David Brazdil's avatar David Brazdil Committed by Android (Google) Code Review
Browse files

Merge "Fix ApplicationInfo.isAllowedToUseHiddenApi predicate"

parents 748663ec 568f5e57
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1601,7 +1601,7 @@ public class ApplicationInfo extends PackageItemInfo implements Parcelable {
     * @hide
     */
    public boolean isAllowedToUseHiddenApi() {
        return isSystemApp();
        return isSystemApp() || isUpdatedSystemApp();
    }

    /**