moved static variables and functions that should not have stuck behind in fg_joystick...
[freeglut] / progs / test-shapes-gles1 / ndk / 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="org.wikibooks.OpenGL"
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-feature android:glEsVersion="0x00020000"></uses-feature>
11
12     <!-- This .apk has no Java code itself, so set hasCode to false. -->
13     <application android:label="@string/app_name" android:hasCode="true"
14                  android:icon="@drawable/icon"
15                  android:debuggable="true"
16                  android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
17
18         <!-- Our activity is the built-in NativeActivity framework class.
19              This will take care of integrating with our NDK code. -->
20         <activity android:name="android.app.NativeActivity"
21                 android:label="@string/app_name"
22                 android:configChanges="orientation|keyboardHidden">
23             <!-- Tell NativeActivity the name of or .so -->
24             <meta-data android:name="android.app.lib_name"
25                     android:value="native-activity" />
26             <intent-filter>
27                 <action android:name="android.intent.action.MAIN" />
28                 <category android:name="android.intent.category.LAUNCHER" />
29             </intent-filter>
30         </activity>
31     </application>
32
33 </manifest> 
34 <!-- END_INCLUDE(manifest) -->