project_files/Android-build/SDL-android-project/AndroidManifest.xml
author Xeli
Thu, 23 Jun 2011 16:26:03 +0200
branchhedgeroid
changeset 5323 0cb2d9e82369
parent 5304 e29aa9e29f00
child 5333 c239cb473a3f
permissions -rw-r--r--
Enabled fullscreen and locked it to landscap

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="org.libsdl.app"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:label="@string/app_name" android:icon="@drawable/icon">
        <activity android:name="SDLActivity"
                  android:label="@string/app_name"
 		  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
		  android:screenOrientation='landscape'>
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>