1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/android-project/AndroidManifest.xml Thu Jan 06 17:12:31 2011 -0800
1.3 @@ -0,0 +1,15 @@
1.4 +<?xml version="1.0" encoding="utf-8"?>
1.5 +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1.6 + package="org.libsdl.app"
1.7 + android:versionCode="1"
1.8 + android:versionName="1.0">
1.9 + <application android:label="@string/app_name" android:icon="@drawable/icon">
1.10 + <activity android:name="SDLActivity"
1.11 + android:label="@string/app_name">
1.12 + <intent-filter>
1.13 + <action android:name="android.intent.action.MAIN" />
1.14 + <category android:name="android.intent.category.LAUNCHER" />
1.15 + </intent-filter>
1.16 + </activity>
1.17 + </application>
1.18 +</manifest>