labyrinth

view 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 source
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.mutantstargoat.labyrinth"
4 android:versionCode="1"
5 android:versionName="1.0">
7 <uses-sdk android:minSdkVersion="9"/>
9 <application android:label="labyrinth"
10 android:hasCode="false"
11 android:debuggable="true">
13 <activity android:name="android.app.NativeActivity" android:label="Labyrinth">
14 <meta-data android:name="android.app.lib_name" android:value="labyrinth"/>
16 <intent-filter>
17 <action android:name="android.intent.action.MAIN"/>
18 <action android:name="android.intent.category.LAUNCHER"/>
19 </intent-filter>
20 </activity>
21 </application>
22 </manifest>