summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2013-08-08 01:40:13 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-08-08 01:40:14 +0000
commit64f1ed1dbd0acc63a894c35598b51154ff604fc5 (patch)
tree1158ee4ea831bbcebe5e97d3a9426111a81381b4 /res
parentac45035ea083b87a71285b584c439520f28406b0 (diff)
parent6a09c3294997dc9e3c83b8431f7b496b19670014 (diff)
downloadandroid_packages_providers_DownloadProvider-64f1ed1dbd0acc63a894c35598b51154ff604fc5.tar.gz
android_packages_providers_DownloadProvider-64f1ed1dbd0acc63a894c35598b51154ff604fc5.tar.bz2
android_packages_providers_DownloadProvider-64f1ed1dbd0acc63a894c35598b51154ff604fc5.zip
Merge "First pass at Downloads storage provider."
Diffstat (limited to 'res')
-rw-r--r--res/mipmap-hdpi/ic_launcher_download.pngbin0 -> 10593 bytes
-rw-r--r--res/mipmap-mdpi/ic_launcher_download.pngbin0 -> 23509 bytes
-rw-r--r--res/mipmap-xhdpi/ic_launcher_download.pngbin0 -> 32416 bytes
-rw-r--r--res/mipmap-xxhdpi/ic_launcher_download.pngbin0 -> 21228 bytes
-rw-r--r--res/values/strings.xml3
-rw-r--r--res/xml/document_provider.xml19
6 files changed, 22 insertions, 0 deletions
diff --git a/res/mipmap-hdpi/ic_launcher_download.png b/res/mipmap-hdpi/ic_launcher_download.png
new file mode 100644
index 00000000..3f092d39
--- /dev/null
+++ b/res/mipmap-hdpi/ic_launcher_download.png
Binary files differ
diff --git a/res/mipmap-mdpi/ic_launcher_download.png b/res/mipmap-mdpi/ic_launcher_download.png
new file mode 100644
index 00000000..76652fb9
--- /dev/null
+++ b/res/mipmap-mdpi/ic_launcher_download.png
Binary files differ
diff --git a/res/mipmap-xhdpi/ic_launcher_download.png b/res/mipmap-xhdpi/ic_launcher_download.png
new file mode 100644
index 00000000..7d7b1b11
--- /dev/null
+++ b/res/mipmap-xhdpi/ic_launcher_download.png
Binary files differ
diff --git a/res/mipmap-xxhdpi/ic_launcher_download.png b/res/mipmap-xxhdpi/ic_launcher_download.png
new file mode 100644
index 00000000..0921c124
--- /dev/null
+++ b/res/mipmap-xxhdpi/ic_launcher_download.png
Binary files differ
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 3a060e2d..2981047c 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -213,4 +213,7 @@
[CHAR LIMIT=200] -->
<string name="download_no_application_title">Can\'t open file</string>
+ <!-- Label describing Downloads as a storage root [CHAR LIMIT=32] -->
+ <string name="root_downloads">Downloads</string>
+
</resources>
diff --git a/res/xml/document_provider.xml b/res/xml/document_provider.xml
new file mode 100644
index 00000000..77891cbc
--- /dev/null
+++ b/res/xml/document_provider.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<documents-provider xmlns:android="http://schemas.android.com/apk/res/android"
+ android:customRoots="true">
+</documents-provider>