istereo2
annotate android/manifest.xml.in @ 24:9d53a4938ce8
port to android mostly complete, ads not done, and needs some polishing
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 04 Oct 2015 08:15:24 +0300 |
parents | 7d795dade0bc |
children | a9f2d30f7e8e |
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@24 | 7 <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="19"/> |
nuclear@24 | 8 <uses-feature android:glEsVersion="0x00020000" android:required="true"/> |
nuclear@23 | 9 |
nuclear@24 | 10 <application android:label="$APPNAME" android:debuggable="true"> |
nuclear@24 | 11 <!-- android:icon="@drawable/ic_launcher" --> |
nuclear@23 | 12 |
nuclear@24 | 13 <activity android:name="MainActivity" |
nuclear@24 | 14 android:configChanges="orientation" |
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> |