labyrinth
annotate android/manifest.xml.in @ 8:d3f1f74067b0
ops, forgot to swapbuffers on the android side
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 04 May 2015 04:56:44 +0300 |
parents | c8826e5ebec1 |
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@7 | 3 package="com.mutantstargoat.$APPNAME" |
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@7 | 9 <application android:label="$APPNAME" |
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@7 | 15 android:label="$APPTITLE"> |
nuclear@5 | 16 |
nuclear@7 | 17 <meta-data android:name="android.app.lib_name" android:value="$APPNAME"/> |
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> |