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 <uses-sdk android:targetSdkVersion="8" /> 6 <application 7 android:label="_RS_Test_CompatLegacy" 8 android:icon="@drawable/test_pattern"> 9 <activity android:name="RSTestCompatLegacy" 10 android:screenOrientation="portrait"> 11 <intent-filter> 12 <action android:name="android.intent.action.MAIN" /> 13 <category android:name="android.intent.category.LAUNCHER" /> 14 </intent-filter> 15 </activity> 16 </application> 17</manifest> 18