labyrinth

view android/manifest.xml.in @ 7:b557812c45db

generating the android (ant) project stuff from the makefile
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 04 May 2015 02:46:35 +0300
parents android/AndroidManifest.xml@c8826e5ebec1
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.$APPNAME"
4 android:versionCode="1"
5 android:versionName="1.0">
7 <uses-sdk android:minSdkVersion="9"/>
9 <application android:label="$APPNAME"
10 android:hasCode="false"
11 android:debuggable="true">
12 <!-- android:icon="@drawable/ic_launcher" -->
14 <activity android:name="android.app.NativeActivity"
15 android:label="$APPTITLE">
17 <meta-data android:name="android.app.lib_name" android:value="$APPNAME"/>
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>