Home | History | Annotate | Download | only in CrossCompatibility
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3       package="com.example.android.touchexample"
      4       android:versionCode="1"
      5       android:versionName="1.0">
      6 
      7     <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8" />
      8     <uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
      9     <supports-screens android:largeScreens="true"/>
     10 
     11     <application android:icon="@drawable/icon" android:label="@string/app_name">
     12         <activity android:name=".TouchExampleActivity"
     13                   android:label="@string/app_name">
     14             <intent-filter>
     15                 <action android:name="android.intent.action.MAIN" />
     16                 <category android:name="android.intent.category.LAUNCHER" />
     17             </intent-filter>
     18         </activity>
     19 
     20     </application>
     21 
     22 </manifest>
     23