The min SDK target is now 21 because of getDrawable change, so this app will not install on KitKat. Also, MediaCodecView is obsolete, so there is no need to change getInput/OutputBiffers and INFO_OUTPUT_BUFFERS_CHANGED, which requires additional refactoring effort. bug: 26185358 Change-Id: If83a5fa0eefebb4932fcd4c03162ba2dd94a755e
52 lines
2.1 KiB
XML
52 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.widevine.demo"
|
|
>
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="21" />
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.Holo.NoActionBar">
|
|
<activity android:name=".WidevineSamplePlayer"
|
|
android:label="@string/app_name"
|
|
android:screenOrientation="landscape">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".VideoPlayerView"
|
|
android:label="@string/app_name"
|
|
android:screenOrientation="landscape">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name=".StreamingActivity"
|
|
android:label="@string/app_name"
|
|
android:screenOrientation="landscape">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name=".DownloadActivity"
|
|
android:label="@string/app_name"
|
|
android:screenOrientation="landscape">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name=".SettingsActivity"
|
|
android:label="@string/app_name"
|
|
android:screenOrientation="landscape">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest>
|