<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.badlogic.androidgames.tests"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />

	<uses-permission android:name="android.permission.WAKE_LOCK"/>
    <application
        android:debuggable="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:label="Gl SurafaceView Test"
			android:name=".GLSurfaceViewTest"
		android:configChanges="keyboard|keyboardHidden|orientation" />
		
		<activity android:label="GL Game Test"
			android:name=".GLGameTest"
		android:configChanges="keyboard|keyboardHidden|orientation" />
		
		<activity android:label="First Triangle Test"
			android:name=".FirstTriangleTest"
		android:configChanges="keyboard|keyboardHidden|orientation" />
		
		<activity android:label="Colored Triangle Test"
			android:name=".ColoredTriangleTest"
		android:configChanges="keyboard|keyboardHidden|orientation" />
		
		<activity android:label="Textured Triangle Test"
			android:name=".TexturedTriangleTest"
		android:configChanges="keyboard|keyboardHidden|orientation" />
		
		<activity android:label="External Storage Test"
			android:name=".ExternalStorageTest"
		android:configChanges="keyboard|keyboardHidden|orientation" />
		
		<activity android:label="Assets Test"
			android:name=".AssetsTest"
		android:configChanges="keyboard|keyboardHidden|orientation" />
		
		<activity android:label="Sound Pool Test"
			android:name=".SoundPoolTest"
		android:configChanges="keyboard|keyboardHidden|orientation" />
		
		<activity android:label="Media Player Test"
			android:name=".MediaPlayerTest"
		android:configChanges="keyboard|keyboardHidden|orientation" />
		
		<activity android:label="Full Screen Test"
			android:name=".FullScreenTest"
		android:configChanges="keyboard|keyboardHidden|orientation" />
		
		<activity android:label="Render View Test"
			android:name=".RenderViewTest"
		android:configChanges="keyboard|keyboardHidden|orientation" />
		
		<activity android:label="Shape Test"
			android:name=".ShapeTest"
		android:configChanges="keyboard|keyboardHidden|orientation" />
		
		<activity android:label="Bitmap Test"
			android:name=".BitmapTest"
		android:configChanges="keyboard|keyboardHidden|orientation" />
		
		<activity android:label="Font Test"
			android:name=".FontTest"
		android:configChanges="keyboard|keyboardHidden|orientation" />
		
		<activity android:label="Surface View Test"
			android:name=".SurfaceViewTest"
		android:configChanges="keyboard|keyboardHidden|orientation" />
    </application>
    
</manifest>