ndktest

annotate AndroidManifest.xml @ 1:fe78cf853157

fixed the build files
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 24 Apr 2015 03:20:17 +0300
parents 1310df7cdf25
children
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@1 9 <application android:label="app-newtest"
nuclear@0 10 android:hasCode="false"
nuclear@1 11 android:debuggable="true">
nuclear@1 12 <!-- android:icon="@drawable/ic_launcher" -->
nuclear@0 13
nuclear@0 14 <activity android:name="android.app.NativeActivity"
nuclear@1 15 android:label="New NDK Test">
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>