istereo2
annotate android/manifest.xml.in @ 23:7d795dade0bc
first pass at android port... compiles!
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sat, 03 Oct 2015 06:10:30 +0300 |
parents | |
children | 9d53a4938ce8 |
rev | line source |
---|---|
nuclear@23 | 1 <?xml version="1.0" encoding="utf-8"?> |
nuclear@23 | 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
nuclear@23 | 3 package="com.mutantstargoat.$APPNAME" |
nuclear@23 | 4 android:versionCode="1" |
nuclear@23 | 5 android:versionName="1.0"> |
nuclear@23 | 6 |
nuclear@23 | 7 <uses-sdk android:minSdkVersion="9"/> |
nuclear@23 | 8 |
nuclear@23 | 9 <application android:label="$APPNAME" |
nuclear@23 | 10 android:hasCode="false" |
nuclear@23 | 11 android:debuggable="true"> |
nuclear@23 | 12 <!-- android:icon="@drawable/ic_launcher" --> |
nuclear@23 | 13 |
nuclear@23 | 14 <activity android:name="android.app.NativeActivity" |
nuclear@23 | 15 android:label="$APPTITLE"> |
nuclear@23 | 16 |
nuclear@23 | 17 <meta-data android:name="android.app.lib_name" android:value="$APPNAME"/> |
nuclear@23 | 18 |
nuclear@23 | 19 <intent-filter> |
nuclear@23 | 20 <action android:name="android.intent.action.MAIN" /> |
nuclear@23 | 21 <category android:name="android.intent.category.LAUNCHER" /> |
nuclear@23 | 22 </intent-filter> |
nuclear@23 | 23 </activity> |
nuclear@23 | 24 </application> |
nuclear@23 | 25 </manifest> |