diff options
| -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 |