labyrinth
view android/AndroidManifest.xml @ 5:c8826e5ebec1
- changed every data loading function to return dummy objects instead of failing
- fixed mistake in AndroidManifest.xml
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Fri, 01 May 2015 05:58:41 +0300 |
parents | 45b91185b298 |
children |
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">
12 <!-- android:icon="@drawable/ic_launcher" -->
14 <activity android:name="android.app.NativeActivity"
15 android:label="Labyrinth">
17 <meta-data android:name="android.app.lib_name" android:value="labyrinth"/>
19 <intent-filter>
20 <action android:name="android.intent.action.MAIN" />
21 <category android:name="android.intent.category.LAUNCHER" />
22 </intent-filter>
23 </activity>
24 </application>
25 </manifest>