Home | History | Annotate | Download | only in MiscSamples
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3     package="com.example.android.rs.miscsamples">
      4     <uses-sdk android:minSdkVersion="11" />
      5     <application android:label="RsMiscSamples"
      6     android:icon="@drawable/test_pattern">
      7         <activity android:name="RsList"
      8                   android:label="RsList"
      9                   android:theme="@android:style/Theme.Black.NoTitleBar">
     10             <intent-filter>
     11                 <action android:name="android.intent.action.MAIN" />
     12                 <category android:name="android.intent.category.LAUNCHER" />
     13             </intent-filter>
     14         </activity>
     15         
     16         <activity android:name="RsRenderStates"
     17                   android:label="RsStates"
     18                   android:theme="@android:style/Theme.Black.NoTitleBar">
     19             <intent-filter>
     20                 <action android:name="android.intent.action.MAIN" />
     21                 <category android:name="android.intent.category.LAUNCHER" />
     22             </intent-filter>
     23         </activity>
     24     </application>
     25 </manifest>
     26