summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2012-07-30 13:22:41 -0700
committerNick Kralevich <nnk@google.com>2012-07-30 13:22:41 -0700
commit086b365871211ff97f26f3bd6514ff1a39b20300 (patch)
tree0df8c4978934e23a9d6bdcb885d1102d7725ec95
parentce8b702955ef17f1faa14a8c63aa0649288166a9 (diff)
downloadDrmProvider-jb-mr1-dev.tar.gz
In a future version of Android, the default value for <provider android:exported> will change from true to false. Explicitly set android:exported="true" Bug: 3306452 Change-Id: Ib55397f4f582bab66123f358523d117bd6e0b7cc
-rw-r--r--AndroidManifest.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 5a98579..feefaaf 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -20,6 +20,7 @@
android:label="@string/app_label">
<provider android:name=".DrmProvider" android:authorities="drm"
+ android:exported="true"
android:multiprocess="false" />
<receiver android:name=".DrmPushReceiver"