Alex Sakhartchouk d4cb9c587c Separating scenegraph from the app that uses it.
Change-Id: I326d3e9804ae2433e8963105442c4a0b8f8f9a6f
2012-01-26 15:51:19 -08:00

23 lines
905 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.testapp">
<uses-permission
android:name="android.permission.INTERNET" />
<application android:label="SceneGraphTest">
<activity android:name="TestApp"
android:label="SceneGraphTest">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="FileSelector"
android:label="FileSelector"
android:hardwareAccelerated="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
</application>
</manifest>