diff options
| author | Fyodor Kupolov <fkupolov@google.com> | 2015-12-14 11:31:29 -0800 |
|---|---|---|
| committer | Fyodor Kupolov <fkupolov@google.com> | 2015-12-15 18:38:51 +0000 |
| commit | f99104dadddb8d7587aaa607821d284e214eb997 (patch) | |
| tree | d3b70ae437a21073c1fc6640960824647e63bc5f /core/java/android | |
| parent | f928d4aa45346b7e5fc640096c80d61d53fdd8ad (diff) | |
Assigned a unique value for PRIVATE_FLAG_EPHEMERAL
Previously the value was conflicting with a private flag
PARTIALLY_ENCRYPTION_AWARE, which has been added before.
Change-Id: I661d8b5f59a39b18288eae47b7522f87b120c57b
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/content/pm/ApplicationInfo.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/java/android/content/pm/ApplicationInfo.java b/core/java/android/content/pm/ApplicationInfo.java index b499af597c70..1eeace127a32 100644 --- a/core/java/android/content/pm/ApplicationInfo.java +++ b/core/java/android/content/pm/ApplicationInfo.java @@ -486,13 +486,6 @@ public class ApplicationInfo extends PackageItemInfo implements Parcelable { public static final int PRIVATE_FLAG_AUTOPLAY = 1 << 7; /** - * Value for {@link #flags}: {@code true} if the application is blocked via restrictions - * and for most purposes is considered as not installed. - * {@hide} - */ - public static final int PRIVATE_FLAG_EPHEMERAL = 1<<8; - - /** * When set, at least one component inside this application is encryption aware. * * @hide @@ -500,6 +493,13 @@ public class ApplicationInfo extends PackageItemInfo implements Parcelable { public static final int PRIVATE_FLAG_PARTIALLY_ENCRYPTION_AWARE = 1 << 8; /** + * Value for {@link #flags}: {@code true} if the application is blocked via restrictions + * and for most purposes is considered as not installed. + * {@hide} + */ + public static final int PRIVATE_FLAG_EPHEMERAL = 1 << 9; + + /** * Private/hidden flags. See {@code PRIVATE_FLAG_...} constants. * {@hide} */ |
