labyrinth

annotate android/AndroidManifest.xml @ 6:345db647383a

fixed the unloadable so bug
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 03 May 2015 02:23:54 +0300
parents 45b91185b298
children
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@5 10 android:hasCode="false"
nuclear@5 11 android:debuggable="true">
nuclear@5 12 <!-- android:icon="@drawable/ic_launcher" -->
nuclear@3 13
nuclear@5 14 <activity android:name="android.app.NativeActivity"
nuclear@5 15 android:label="Labyrinth">
nuclear@5 16
nuclear@3 17 <meta-data android:name="android.app.lib_name" android:value="labyrinth"/>
nuclear@3 18
nuclear@3 19 <intent-filter>
nuclear@5 20 <action android:name="android.intent.action.MAIN" />
nuclear@5 21 <category android:name="android.intent.category.LAUNCHER" />
nuclear@3 22 </intent-filter>
nuclear@3 23 </activity>
nuclear@3 24 </application>
nuclear@3 25 </manifest>