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.example.FlatBufferTest"> 5 6 <uses-feature android:glEsVersion="0x00020000"></uses-feature> 7 8 <!-- This .apk has no Java code itself, so set hasCode to false. --> 9 <application android:label="@string/app_name" 10 android:hasCode="false" 11 android:allowBackup="false"> 12 <!-- Our activity is the built-in NativeActivity framework class. 13 This will take care of integrating with our NDK code. --> 14 <activity android:name="android.app.NativeActivity" 15 android:label="@string/app_name" 16 android:configChanges="orientation|keyboardHidden" 17 android:screenOrientation="landscape"> 18 <!-- Tell NativeActivity the name of or .so --> 19 <meta-data android:name="android.app.lib_name" 20 android:value="FlatBufferTest" /> 21 <intent-filter> 22 <action android:name="android.intent.action.MAIN" /> 23 <category android:name="android.intent.category.LAUNCHER" /> 24 </intent-filter> 25 </activity> 26 </application> 27 28</manifest> 29<!-- END_INCLUDE(manifest) --> 30