blob: 08a3976afebe6f548b4c6687e8e27d46012738ed [file] [log] [blame]
Jason Samse5f2f662012-05-16 15:43:25 -07001<?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>