By requiring authorization from a key manager, DRM protects content from unauthorized consumption. However, there are situations when your viewers are offline and cannot immediately request this authorization. This article explains how to set up offline DRM playback in your Android app.
<br /> <hr />
## Requirements
<a href="https://docs.jwplayer.com/platform/docs/protection-studio-drm-generate-a-signed-content-url-for-drm-playback#media_id" target="_blank">Media ID</a>
<a href="https://docs.jwplayer.com/platform/docs/protection-studio-drm-generate-a-signed-content-url-for-drm-playback#policy_id" target="_blank">Policy ID</a>
<br /> <hr />
## Implementation
[Update the **AndroidManifest.xml** file](🔗).
Make a `
GET https://cdn.jwplayer.com/v2/media/{media_id}/drm/{policy_id}
` call to download the offline DRM content. Be sure to replace the `{media_id}
` and `{policy_id}
` placeholders.Use the following recipe in the Activity to set up the player with the offline DRM content.
<br /> <br />
### Update the AndroidManifest.xml
Add the following permissions:
`
android.permission.FOREGROUND_SERVICE
``
android.permission.RECEIVE_BOOT_COMPLETED
`
Register the download service (`
com.longtailvideo.jwplayer.drm.download.DrmDownloadService
`).
<br />