diff options
| author | 2023-12-11 11:59:15 +0000 | |
|---|---|---|
| committer | 2023-12-11 11:59:15 +0000 | |
| commit | f5423b1dd60d25434771f857d161c21d94e2c3ce (patch) | |
| tree | b773761dcb23432cbe44ff36c665300ffbec930e | |
| parent | 279357e3848275d4f13cfefbeeef9f39ebd93847 (diff) | |
| parent | 6fbb2c723e5bf55f950d49833c71e55490767820 (diff) | |
Merge "Remove refererence from public API to flagged API" into main
| -rw-r--r-- | core/java/android/os/DropBoxManager.java | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/core/java/android/os/DropBoxManager.java b/core/java/android/os/DropBoxManager.java index a1d2dcc74246..2aab2b4b18d0 100644 --- a/core/java/android/os/DropBoxManager.java +++ b/core/java/android/os/DropBoxManager.java @@ -81,10 +81,8 @@ public class DropBoxManager { /** * Broadcast Action: This is broadcast when a new entry is added in the dropbox. - * For apps targeting {@link android.os.Build.VERSION_CODES#VANILLA_ICE_CREAM} and later, you - * must hold the {@link android.Manifest.permission#READ_DROPBOX_DATA} permission - * in order to receive this broadcast. For apps targeting Android versions lower - * than {@link android.os.Build.VERSION_CODES#VANILLA_ICE_CREAM}, you must hold + * For apps targeting 35 and later, For apps targeting Android versions lower + * than 35, you must hold * {@link android.Manifest.permission#READ_LOGS}. * This broadcast can be rate limited for low priority entries * @@ -385,11 +383,8 @@ public class DropBoxManager { /** * Gets the next entry from the drop box <em>after</em> the specified time. * You must always call {@link Entry#close()} on the return value! - * {@link android.Manifest.permission#READ_DROPBOX_DATA} permission is - * required for apps targeting {@link android.os.Build.VERSION_CODES#VANILLA_ICE_CREAM} - * and later. {@link android.Manifest.permission#READ_LOGS} permission is - * required for apps targeting Android versions lower than - * {@link android.os.Build.VERSION_CODES#VANILLA_ICE_CREAM}. + * {@link android.Manifest.permission#READ_LOGS} permission is + * required for apps targeting Android versions lower than 35. * * @param tag of entry to look for, null for all tags * @param msec time of the last entry seen |