summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorSvetoslav Ganov <svetoslavganov@google.com>2016-03-06 00:03:23 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2016-03-06 00:03:24 +0000
commitcc975c2d6e60f43cce44f8c5bb861de1177c4e70 (patch)
tree95da3efe8b225180d5ce2de2ef4e7cd4695ed6aa /res
parentc5d544efee851227d9cfad18dd48a107d3b49d2f (diff)
parentbd6ad3a2b1c30f7a007c4c2ef7e5c273a2f9df10 (diff)
downloadandroid_packages_apps_PackageInstaller-cc975c2d6e60f43cce44f8c5bb861de1177c4e70.tar.gz
android_packages_apps_PackageInstaller-cc975c2d6e60f43cce44f8c5bb861de1177c4e70.tar.bz2
android_packages_apps_PackageInstaller-cc975c2d6e60f43cce44f8c5bb861de1177c4e70.zip
Merge "Support app install from a content URI" into nyc-dev
Diffstat (limited to 'res')
-rw-r--r--res/drawable/ic_file_download.xml28
-rw-r--r--res/values/strings.xml6
2 files changed, 34 insertions, 0 deletions
diff --git a/res/drawable/ic_file_download.xml b/res/drawable/ic_file_download.xml
new file mode 100644
index 00000000..7ea91f5b
--- /dev/null
+++ b/res/drawable/ic_file_download.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2016 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.
+-->
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+ android:width="24dp"
+ android:height="24dp"
+ android:viewportWidth="24"
+ android:viewportHeight="24">
+
+ <path
+ android:fillColor="#000000"
+ android:pathData="M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" />
+ <path
+ android:pathData="M0 0h24v24H0z" />
+</vector>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 38e27cb1..d8dadf75 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -293,4 +293,10 @@
<!-- Title for the category listing the current permissions used by an app. -->
<string name="current_permissions_category">Current permissions</string>
+ <!-- Message that the app to be installed is being staged -->
+ <string name="message_staging">Staging app&#8230;</string>
+
+ <!-- Placeholder for an app name when it is unknown -->
+ <string name="app_name_unknown">Unknown</string>
+
</resources>