istereo2

diff 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
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/android/manifest.xml.in	Sat Oct 03 06:10:30 2015 +0300
     1.3 @@ -0,0 +1,25 @@
     1.4 +<?xml version="1.0" encoding="utf-8"?>
     1.5 +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
     1.6 +	package="com.mutantstargoat.$APPNAME"
     1.7 +	android:versionCode="1"
     1.8 +	android:versionName="1.0">
     1.9 +
    1.10 +	<uses-sdk android:minSdkVersion="9"/>
    1.11 +
    1.12 +	<application android:label="$APPNAME"
    1.13 +			android:hasCode="false"
    1.14 +			android:debuggable="true">
    1.15 +			<!-- android:icon="@drawable/ic_launcher" -->
    1.16 +
    1.17 +		<activity android:name="android.app.NativeActivity"
    1.18 +			android:label="$APPTITLE">
    1.19 +
    1.20 +			<meta-data android:name="android.app.lib_name" android:value="$APPNAME"/>
    1.21 +
    1.22 +			<intent-filter>
    1.23 +				<action android:name="android.intent.action.MAIN" />
    1.24 +				<category android:name="android.intent.category.LAUNCHER" />
    1.25 +			</intent-filter>
    1.26 +		</activity>
    1.27 +	</application>
    1.28 +</manifest>