ndktest

annotate 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
rev   line source
nuclear@0 1 <?xml version="1.0" encoding="utf-8"?>
nuclear@0 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
nuclear@0 3 package="com.mutantstargoat.ndktest"
nuclear@0 4 android:versionCode="1"
nuclear@0 5 android:versionName="1.0">
nuclear@0 6
nuclear@0 7 <uses-sdk android:minSdkVersion="9"/>
nuclear@0 8
nuclear@0 9 <application android:label="@string/app_name"
nuclear@0 10 android:hasCode="false"
nuclear@0 11 android:debuggable="true"
nuclear@0 12 android:icon="@drawable/ic_launcher">
nuclear@0 13
nuclear@0 14 <activity android:name="android.app.NativeActivity"
nuclear@0 15 android:label="@string/app_name">
nuclear@0 16
nuclear@0 17 <meta-data android:name="android.app.lib_name" android:value="ndktest"/>
nuclear@0 18
nuclear@0 19 <intent-filter>
nuclear@0 20 <action android:name="android.intent.action.MAIN" />
nuclear@0 21 <category android:name="android.intent.category.LAUNCHER" />
nuclear@0 22 </intent-filter>
nuclear@0 23 </activity>
nuclear@0 24 </application>
nuclear@0 25 </manifest>