summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorSvet Ganov <svetoslavganov@google.com>2016-03-05 10:27:49 -0800
committerSvet Ganov <svetoslavganov@google.com>2016-03-05 16:02:50 -0800
commitbd6ad3a2b1c30f7a007c4c2ef7e5c273a2f9df10 (patch)
treeca264fe6cc390630a2b99c2a539b42c6d3429097 /res
parentdccf863b897856c37aa26c932e78b9b27808e092 (diff)
downloadandroid_packages_apps_PackageInstaller-bd6ad3a2b1c30f7a007c4c2ef7e5c273a2f9df10.tar.gz
android_packages_apps_PackageInstaller-bd6ad3a2b1c30f7a007c4c2ef7e5c273a2f9df10.tar.bz2
android_packages_apps_PackageInstaller-bd6ad3a2b1c30f7a007c4c2ef7e5c273a2f9df10.zip
Support app install from a content URI
bug:24079113 Change-Id: Ide1aa1667370f6b8d00ff269ef28992589656e9a
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 41b097a9..970d5851 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>