project_files/Android-build/SDL-android-project/AndroidManifest.xml
author Xeli
Wed, 22 Jun 2011 23:59:01 +0200
branchhedgeroid
changeset 5304 e29aa9e29f00
child 5323 0cb2d9e82369
permissions -rw-r--r--
Added SDL-android-project, this is the Android/Java part of the application

<?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">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>