istereo2

view 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
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" android:targetSdkVersion="19"/>
8 <uses-feature android:glEsVersion="0x00020000" android:required="true"/>
10 <application android:label="$APPNAME" android:debuggable="true">
11 <!-- android:icon="@drawable/ic_launcher" -->
13 <activity android:name="MainActivity"
14 android:configChanges="orientation"
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>