ndktest

view 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 source
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.mutantstargoat.ndktest"
4 android:versionCode="1"
5 android:versionName="1.0">
7 <uses-sdk android:minSdkVersion="9"/>
9 <application android:label="@string/app_name"
10 android:hasCode="false"
11 android:debuggable="true"
12 android:icon="@drawable/ic_launcher">
14 <activity android:name="android.app.NativeActivity"
15 android:label="@string/app_name">
17 <meta-data android:name="android.app.lib_name" android:value="ndktest"/>
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>