diff options
| author | 2021-03-31 08:42:31 +0000 | |
|---|---|---|
| committer | 2021-03-31 08:42:31 +0000 | |
| commit | dbb6403a1a19e02160c498d2c0a90b29f437ae5c (patch) | |
| tree | fcb2fce23cdd8711ced97e18542b741924d1f61b | |
| parent | 6742af3accff7edf82341cb36b6bd2c2576cac70 (diff) | |
| parent | 055f044724eb163615f18a8194b240c757e135de (diff) | |
Merge "Add documents for isOem/Vendor/Product" am: 67b816def6 am: 1593239f22 am: 055f044724
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1657399
Change-Id: I919cb5686b00247e8b3f158b2a881fb21f87651b
| -rw-r--r-- | core/java/android/content/pm/ApplicationInfo.java | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/core/java/android/content/pm/ApplicationInfo.java b/core/java/android/content/pm/ApplicationInfo.java index 5f3ec36438a3..6badf0e0addc 100644 --- a/core/java/android/content/pm/ApplicationInfo.java +++ b/core/java/android/content/pm/ApplicationInfo.java @@ -2268,7 +2268,10 @@ public class ApplicationInfo extends PackageItemInfo implements Parcelable { return (flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) == 0; } - /** @hide */ + /** + * True if the application is pre-installed on the OEM partition of the system image. + * @hide + */ @SystemApi public boolean isOem() { return (privateFlags & ApplicationInfo.PRIVATE_FLAG_OEM) != 0; @@ -2316,13 +2319,19 @@ public class ApplicationInfo extends PackageItemInfo implements Parcelable { return (flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0; } - /** @hide */ + /** + * True if the application is pre-installed on the vendor partition of the system image. + * @hide + */ @SystemApi public boolean isVendor() { return (privateFlags & ApplicationInfo.PRIVATE_FLAG_VENDOR) != 0; } - /** @hide */ + /** + * True if the application is pre-installed on the product partition of the system image. + * @hide + */ @SystemApi public boolean isProduct() { return (privateFlags & ApplicationInfo.PRIVATE_FLAG_PRODUCT) != 0; |