labyrinth

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