Home | History | Annotate | Download | only in testdata
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3     package="com.android.testapp" android:versionCode="42"
      4     android:versionName="1.42">
      5     <application android:icon="@drawable/icon">
      6         <activity android:name="com.android.testapp.MainActivity"
      7             android:label="@string/app_name">
      8             <intent-filter>
      9                 <action android:name="android.intent.action.MAIN" />
     10                 <category android:name="android.intent.category.LAUNCHER" />
     11                 <category android:name="android.intent.category.DEFAULT" />
     12             </intent-filter>
     13         </activity>
     14         <uses-library android:name="android.test.runner"
     15             android:required="false" />
     16         <uses-library android:name="android.test.runner2" />
     17     </application>
     18     <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="8" />
     19     <supports-screens android:resizeable="true"
     20         android:smallScreens="true" android:anyDensity="true"
     21         android:largeScreens="true" android:normalScreens="true" />
     22     <uses-configuration android:reqKeyboardType="twelvekey"
     23         android:reqTouchScreen="finger" android:reqFiveWayNav="true"
     24         android:reqHardKeyboard="true" android:reqNavigation="nonav" />
     25     <uses-feature android:glEsVersion="0x00020001" />
     26     <uses-feature android:name="com.foo.feature" />
     27     <instrumentation android:name="android.test.InstrumentationTestRunner"
     28         android:targetPackage="com.example.android.apis" android:label="Tests for Api Demos." />
     29 </manifest>
     30