Home | History | Annotate | Download | only in ModelViewer
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3     package="com.android.modelviewer">
      4     <application android:label="ModelViewer">
      5         <activity android:name="SimpleModel"
      6                   android:label="SimpleModel"
      7                   android:screenOrientation="nosensor">
      8             <intent-filter>
      9                 <action android:name="android.intent.action.MAIN" />
     10                 <category android:name="android.intent.category.LAUNCHER" />
     11             </intent-filter>
     12         </activity>
     13         <activity android:name="A3DSelector"
     14                   android:label="A3DSelector"
     15                   android:hardwareAccelerated="true">
     16             <intent-filter>
     17                 <action android:name="android.intent.action.MAIN" />
     18             </intent-filter>
     19         </activity>
     20         <activity android:name="SceneGraph"
     21                   android:label="SceneGraph"
     22                   android:theme="@android:style/Theme.Black.NoTitleBar">
     23             <intent-filter>
     24                 <action android:name="android.intent.action.MAIN" />
     25                 <category android:name="android.intent.category.LAUNCHER" />
     26             </intent-filter>
     27         </activity>
     28     </application>
     29 </manifest>
     30