diff options
-rw-r--r-- | core/java/android/provider/Downloads.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/java/android/provider/Downloads.java b/core/java/android/provider/Downloads.java index 7e1d68590f76..1b37107e1d60 100644 --- a/core/java/android/provider/Downloads.java +++ b/core/java/android/provider/Downloads.java @@ -624,6 +624,13 @@ public final class Downloads { "android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS"; /** + * The permission to downloads files to the cache partition that won't be automatically + * purged when space is needed. + */ + public static final String PERMISSION_CACHE_NON_PURGEABLE = + "android.permission.DOWNLOAD_CACHE_NON_PURGEABLE"; + + /** * The content:// URI for the data table in the provider */ public static final Uri CONTENT_URI = |