This is required because these makefiles contain a module that's building agains the "current" SDK and will need to add an explicit compile time dependency on the apache API. Note that no runtime dependency is needed because the app targets SDK version 12 (?!!). bug: 18027885 Change-Id: I37587b91f9c52f88a8becce0449ac9b24a77fdad
21 lines
883 B
XML
21 lines
883 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.widevine.test"
|
|
>
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-sdk android:minSdkVersion="12" />
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.Holo.NoActionBar">
|
|
<activity android:name="MediaDrmAPITest"
|
|
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>
|
|
</application>
|
|
|
|
</manifest>
|