Home | History | Annotate | Download | only in DrmProvider
      1 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      2         package="com.android.providers.drm"
      3         android:sharedUserId="android.media">
      4 
      5     <!-- Allows an application to access DRM content -->
      6     <permission android:name="android.permission.ACCESS_DRM"
      7         android:label="@string/permlab_accessDrm"
      8         android:description="@string/permdesc_accessDrm"
      9         android:protectionLevel="signature" />
     10 
     11     <permission android:name="android.permission.INSTALL_DRM"
     12         android:label="@string/permlab_installDrm"
     13         android:description="@string/permdesc_installDrm"
     14         android:protectionLevel="normal" />
     15 
     16     <uses-permission android:name="android.permission.RECEIVE_WAP_PUSH" />
     17 
     18     <application android:process="android.process.media"
     19                  android:label="@string/app_label">
     20 
     21         <provider android:name=".DrmProvider" android:authorities="drm"
     22                 android:multiprocess="false" />
     23 
     24         <receiver android:name=".DrmPushReceiver"
     25                 android:permission="android.permission.BROADCAST_WAP_PUSH">
     26             <intent-filter>
     27                 <action android:name="android.provider.Telephony.WAP_PUSH_RECEIVED" />
     28                 <data android:mimeType="application/vnd.oma.drm.rights+xml" />
     29                 <data android:value="application/vnd.oma.drm.rights+wbxml" />
     30             </intent-filter>
     31         </receiver>
     32 
     33     </application>
     34 </manifest>
     35