project_files/Android-build/SDL-android-project/AndroidManifest.xml
author Xeli
Thu, 23 Jun 2011 21:33:04 +0200
branchhedgeroid
changeset 5333 c239cb473a3f
parent 5323 0cb2d9e82369
child 5397 4ae1b082e4ba
permissions -rw-r--r--
Package name changed from org.libsdl.app to org.hedgewars

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="org.hedgewars"
      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>