labyrinth

diff android/AndroidManifest.xml @ 3:45b91185b298

android port
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 01 May 2015 04:36:50 +0300
parents
children c8826e5ebec1
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/android/AndroidManifest.xml	Fri May 01 04:36:50 2015 +0300
     1.3 @@ -0,0 +1,22 @@
     1.4 +<?xml version="1.0" encoding="utf-8"?>
     1.5 +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
     1.6 +	package="com.mutantstargoat.labyrinth"
     1.7 +	android:versionCode="1"
     1.8 +	android:versionName="1.0">
     1.9 +
    1.10 +	<uses-sdk android:minSdkVersion="9"/>
    1.11 +
    1.12 +	<application android:label="labyrinth"
    1.13 +		android:hasCode="false"
    1.14 +		android:debuggable="true">
    1.15 +
    1.16 +		<activity android:name="android.app.NativeActivity" android:label="Labyrinth">
    1.17 +			<meta-data android:name="android.app.lib_name" android:value="labyrinth"/>
    1.18 +
    1.19 +			<intent-filter>
    1.20 +				<action android:name="android.intent.action.MAIN"/>
    1.21 +				<action android:name="android.intent.category.LAUNCHER"/>
    1.22 +			</intent-filter>
    1.23 +		</activity>
    1.24 +	</application>
    1.25 +</manifest>