summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
blob: feefaaf55a72258eaeab026e8c799afcdd5209a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<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:allowBackup="false"
                 android:label="@string/app_label">

        <provider android:name=".DrmProvider" android:authorities="drm"
                android:exported="true"
                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>