Files
wagic/projects/mtg/Android/AndroidManifest.xml
Xawotihs 4ed7f10def - Added SDL, libjpeg and libpng
- Added Android project and Java files
2011-04-23 19:25:48 +00:00

16 lines
635 B
XML

<?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>