<img src="https://img.shields.io/badge/%20-ENTERPRISE-%23B10031" style="float:left"/><br /> <img src="https://img.shields.io/badge/Android-V4-009727?logo=android" style="float:left"/>
<br />
<br /> <hr />
## Implementation
To complete the SDK import process, use the following steps to configure **AndroidManifest.xml**:
In **app/manifests/AndroidManifest.xml**, in all `
<activity>
` elements that will contain a player, add `android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
`. This prevents the Activity from being destroyed when rotated.(Optional) If your app reads media content from the user's device, add `
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
`.
Android's <a href="https://developer.android.com/training/permissions/requesting" target="_blank">Request App Permissions</a> guide explains how requesting permissions works.
<br />
<br /> <br />