]> nv-tegra.nvidia Code Review - android/platform/packages/providers/DownloadProvider.git/commitdiff
Downloads should always be available.
authorJeff Sharkey <jsharkey@android.com>
Thu, 11 Apr 2013 18:08:10 +0000 (11:08 -0700)
committerJeff Sharkey <jsharkey@android.com>
Thu, 11 Apr 2013 18:17:53 +0000 (11:17 -0700)
Bug: 8596021
Change-Id: I56149da0519915764f5c38a8141e1a7dcfff5b25

AndroidManifest.xml
ui/AndroidManifest.xml

index bdc6b132572614af0701fb983adc1a9aadc166d0..3024a17a9bbb6e802fedc9cb3d3931b3d066af8a 100644 (file)
@@ -57,6 +57,7 @@
 
     <application android:process="android.process.media"
                  android:label="@string/app_label">
+
         <provider android:name=".DownloadProvider"
                   android:authorities="downloads" android:exported="true">
           <!-- Anyone can access /my_downloads, the provider internally restricts access by UID for
index 971474544e18649ada654a58d2f174cd35ffddf2..f707dfbd865aef247286cd3ec91ef2e430f34cca 100644 (file)
@@ -10,7 +10,8 @@
                  android:label="@string/app_label"
                  android:icon="@mipmap/ic_launcher_download"
                  android:hardwareAccelerated="true"
-                 android:supportsRtl="true">
+                 android:supportsRtl="true"
+                 android:requiredForAllUsers="true">
 
         <activity android:name=".DownloadList"
                   android:launchMode="singleTop"