ndktest

diff AndroidManifest.xml @ 0:1310df7cdf25

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 23 Apr 2015 20:54:02 +0300
parents
children fe78cf853157
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/AndroidManifest.xml	Thu Apr 23 20:54:02 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.ndktest"
     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="@string/app_name"
    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="@string/app_name">
    1.19 +
    1.20 +			<meta-data android:name="android.app.lib_name" android:value="ndktest"/>
    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>