diff options
| author | 2021-03-31 06:40:47 +0000 | |
|---|---|---|
| committer | 2021-03-31 06:40:47 +0000 | |
| commit | 67b816def653cc4b81f836f858340231abb970fc (patch) | |
| tree | 20b7472dc302b1c1ed2145662e2cb292f29127b0 | |
| parent | 07ff79a595070b9f7358af1f9bc1451d1b6d4b96 (diff) | |
| parent | 63691d5ec879fc4de83fe8616e63d291050d8574 (diff) | |
Merge "Add documents for isOem/Vendor/Product"
| -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 6ec11693d69b..ad9e31b6cbf4 100644 --- a/core/java/android/content/pm/ApplicationInfo.java +++ b/core/java/android/content/pm/ApplicationInfo.java @@ -2167,7 +2167,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; @@ -2215,13 +2218,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; |