summaryrefslogtreecommitdiff
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 c21a26d..ba86c41 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -11,7 +11,7 @@
<uses-permission android:name="android.permission.RECEIVE_WAP_PUSH" />
<application android:process="android.process.media"
- android:label="DRM Protected Content Storage">
+ android:label="@string/app_label">
<provider android:name=".DrmProvider" android:authorities="drm"
android:multiprocess="false" />
diff --git a/res/values/strings.xml b/res/values/strings.xml
index c8f83dd..8a89313 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -15,6 +15,9 @@
-->
<resources>
+ <!-- Title of the storage activity for DRM content. -->
+ <string name="app_label">DRM Protected Content Storage</string>
+
<!-- Title of the permission that allows access to DRM content -->
<string name="permlab_accessDrm">Access DRM content.</string>