2010-08-13 10:44:14 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-08-18 15:46:43 -07:00
|
|
|
package="com.android.samples">
|
2010-08-19 10:53:41 -07:00
|
|
|
<application android:label="Samples"
|
|
|
|
android:icon="@drawable/test_pattern">
|
2010-08-18 15:46:43 -07:00
|
|
|
<activity android:name="RsList"
|
2010-12-15 09:59:58 -08:00
|
|
|
android:label="RsList"
|
2010-08-13 10:44:14 -07:00
|
|
|
android:theme="@android:style/Theme.Black.NoTitleBar">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2010-08-23 10:24:10 -07:00
|
|
|
|
|
|
|
<activity android:name="RsRenderStates"
|
2010-12-15 09:59:58 -08:00
|
|
|
android:label="RsStates"
|
2010-08-23 10:24:10 -07:00
|
|
|
android:theme="@android:style/Theme.Black.NoTitleBar">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2010-12-13 14:48:21 -08:00
|
|
|
|
|
|
|
<activity android:name="RsBench"
|
2010-12-15 09:59:58 -08:00
|
|
|
android:label="RsBenchmark"
|
2010-12-13 14:48:21 -08:00
|
|
|
android:theme="@android:style/Theme.Black.NoTitleBar">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2010-08-13 10:44:14 -07:00
|
|
|
</application>
|
|
|
|
</manifest>
|