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

Commit 7655575f authored by Rhed Jao's avatar Rhed Jao
Browse files

Deprecates GET_INTENT_FILTERS in the PackageManager

This constant has never been used. The platform does not support
getting intent filters for the package.

Bug: 73780749
Bug: 171597154
Test: Build
Change-Id: I907077b2a07e4a88aa8994ed3c25991b6d1172b4
Merged-In: I907077b2a07e4a88aa8994ed3c25991b6d1172b4
parent a1be0e12
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12211,7 +12211,7 @@ package android.content.pm {
    field @Deprecated public static final int GET_DISABLED_UNTIL_USED_COMPONENTS = 32768; // 0x8000
    field public static final int GET_GIDS = 256; // 0x100
    field public static final int GET_INSTRUMENTATION = 16; // 0x10
    field public static final int GET_INTENT_FILTERS = 32; // 0x20
    field @Deprecated public static final int GET_INTENT_FILTERS = 32; // 0x20
    field public static final int GET_META_DATA = 128; // 0x80
    field public static final int GET_PERMISSIONS = 4096; // 0x1000
    field public static final int GET_PROVIDERS = 8; // 0x8
+3 −0
Original line number Diff line number Diff line
@@ -299,7 +299,10 @@ public abstract class PackageManager {
    /**
     * {@link PackageInfo} flag: return information about the
     * intent filters supported by the activity.
     *
     * @deprecated The platform does not support getting {@link IntentFilter}s for the package.
     */
    @Deprecated
    public static final int GET_INTENT_FILTERS          = 0x00000020;

    /**