| <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| package="com.android.providers.drm" |
| android:sharedUserId="android.media"> |
| |
| <!-- Allows an application to access DRM content --> |
| <permission android:name="android.permission.ACCESS_DRM" |
| android:label="@string/permlab_accessDrm" |
| android:description="@string/permdesc_accessDrm" |
| android:protectionLevel="signature" /> |
| |
| <permission android:name="android.permission.INSTALL_DRM" |
| android:label="@string/permlab_installDrm" |
| android:description="@string/permdesc_installDrm" |
| android:protectionLevel="normal" /> |
| |
| <uses-permission android:name="android.permission.RECEIVE_WAP_PUSH" /> |
| |
| <application android:process="android.process.media" |
| android:label="@string/app_label"> |
| |
| <provider android:name=".DrmProvider" android:authorities="drm" |
| android:multiprocess="false" /> |
| |
| <receiver android:name=".DrmPushReceiver" |
| android:permission="android.permission.BROADCAST_WAP_PUSH"> |
| <intent-filter> |
| <action android:name="android.provider.Telephony.WAP_PUSH_RECEIVED" /> |
| <data android:mimeType="application/vnd.oma.drm.rights+xml" /> |
| <data android:value="application/vnd.oma.drm.rights+wbxml" /> |
| </intent-filter> |
| </receiver> |
| |
| </application> |
| </manifest> |