Merge "Deprecate DownloadManager.addCompletedDownload." into qt-dev

This commit is contained in:
Jeff Sharkey
2019-04-28 17:03:27 +00:00
committed by Android (Google) Code Review
2 changed files with 22 additions and 2 deletions

View File

@@ -4622,8 +4622,8 @@ package android.app {
}
public class DownloadManager {
method public long addCompletedDownload(String, String, boolean, String, String, long, boolean);
method public long addCompletedDownload(String, String, boolean, String, String, long, boolean, android.net.Uri, android.net.Uri);
method @Deprecated public long addCompletedDownload(String, String, boolean, String, String, long, boolean);
method @Deprecated public long addCompletedDownload(String, String, boolean, String, String, long, boolean, android.net.Uri, android.net.Uri);
method public long enqueue(android.app.DownloadManager.Request);
method public static Long getMaxBytesOverMobile(android.content.Context);
method public String getMimeTypeForDownloadedFile(long);

View File

@@ -1366,7 +1366,12 @@ public class DownloadManager {
* @param showNotification true if a notification is to be sent, false otherwise
* @return an ID for the download entry added to the downloads app, unique across the system
* This ID is used to make future calls related to this download.
*
* @deprecated Apps should instead contribute files to
* {@link android.provider.MediaStore.Downloads} collection to make them available to user
* as part of Downloads.
*/
@Deprecated
public long addCompletedDownload(String title, String description,
boolean isMediaScannerScannable, String mimeType, String path, long length,
boolean showNotification) {
@@ -1407,7 +1412,12 @@ public class DownloadManager {
* @param referer the HTTP Referer for the download
* @return an ID for the download entry added to the downloads app, unique across the system
* This ID is used to make future calls related to this download.
*
* @deprecated Apps should instead contribute files to
* {@link android.provider.MediaStore.Downloads} collection to make them available to user
* as part of Downloads.
*/
@Deprecated
public long addCompletedDownload(String title, String description,
boolean isMediaScannerScannable, String mimeType, String path, long length,
boolean showNotification, Uri uri, Uri referer) {
@@ -1426,8 +1436,13 @@ public class DownloadManager {
* {@link Environment#getExternalStoragePublicDirectory(String)} with
* {@link Environment#DIRECTORY_DOWNLOADS}).
*
* @deprecated Apps should instead contribute files to
* {@link android.provider.MediaStore.Downloads} collection to make them available to user
* as part of Downloads.
*
* {@hide}
*/
@Deprecated
public long addCompletedDownload(String title, String description,
boolean isMediaScannerScannable, String mimeType, String path, long length,
boolean showNotification, boolean allowWrite) {
@@ -1447,7 +1462,12 @@ public class DownloadManager {
* {@link Environment#DIRECTORY_DOWNLOADS}).
*
* {@hide}
*
* @deprecated Apps should instead contribute files to
* {@link android.provider.MediaStore.Downloads} collection to make them available to user
* as part of Downloads.
*/
@Deprecated
public long addCompletedDownload(String title, String description,
boolean isMediaScannerScannable, String mimeType, String path, long length,
boolean showNotification, boolean allowWrite, Uri uri, Uri referer) {