1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="com.android.rs.test_compatlegacy"> 4 <uses-sdk android:minSdkVersion="8" 5 android:targetSdkVersion="20" /> 6 <application 7 android:label="_RS_Test_CompatLegacy" 8 android:icon="@drawable/test_pattern"> 9 <uses-library android:name="android.test.runner" /> 10 11 <activity android:name="RSTestCompatLegacy" 12 android:screenOrientation="portrait"> 13 <intent-filter> 14 <action android:name="android.intent.action.MAIN" /> 15 <category android:name="android.intent.category.LAUNCHER" /> 16 </intent-filter> 17 </activity> 18 </application> 19</manifest> 20