2010-06-04 10:06:50 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.android.modelviewer">
|
|
|
|
<application android:label="ModelViewer">
|
|
|
|
<activity android:name="ModelViewer"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
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-18 15:46:43 -07:00
|
|
|
<activity android:name="SceneGraph"
|
|
|
|
android:label="SceneGraph"
|
|
|
|
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-06-04 10:06:50 -07:00
|
|
|
</application>
|
|
|
|
</manifest>
|