Added missing Android files
[chess] / android / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- BEGIN_INCLUDE(manifest) -->
3 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
4         package="com.ecere.Chess"
5         android:versionCode="1"
6         android:versionName="1.0">
7
8     <!-- This is the platform API where NativeActivity was introduced. -->
9     <uses-sdk android:minSdkVersion="9" />
10     <uses-permission android:name="android.permission.INTERNET" />
11
12     <!-- This .apk has no Java code itself, so set hasCode to false. -->
13     <application android:label="@string/app_name" android:hasCode="false" android:icon="@drawable/icon">
14
15         <!-- Our activity is the built-in NativeActivity framework class. This will take care of integrating with our NDK code. -->
16         <activity android:name="android.app.NativeActivity"
17                   android:label="@string/app_name"
18                   android:configChanges="orientation|keyboardHidden">
19             <!-- Tell NativeActivity the name of our .so -->
20             <meta-data android:name="android.app.lib_name"
21                        android:value="ecere" />
22             <intent-filter>
23                 <action android:name="android.intent.action.MAIN" />
24                 <category android:name="android.intent.category.LAUNCHER" />
25             </intent-filter>
26         </activity>
27     </application>
28
29 </manifest> 
30 <!-- END_INCLUDE(manifest) -->