summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AndroidManifest.xml2
-rw-r--r--res/values/strings.xml3
2 files changed, 4 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 3b9c1060..23986048 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -37,7 +37,7 @@
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application android:process="android.process.media"
- android:label="Download Manager">
+ android:label="@string/app_label">
<provider android:name=".DownloadProvider"
android:authorities="downloads"
android:permission="android.permission.ACCESS_DOWNLOAD_MANAGER" />
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 3a8fa076..e8abf5f5 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -15,6 +15,9 @@
-->
<resources>
+ <!-- This is the name of the Download Manager application. -->
+ <string name="app_label">Download Manager</string>
+
<!-- This is the short description of a permission associated with the
Android Download Manager. It is displayed as part of the description
of any application that was granted that permission.