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-sdk android:minSdkVersion="14"/> 7 <uses-feature android:glEsVersion="0x00020000"></uses-feature> 8 9 <!-- This .apk has no Java code itself, so set hasCode to false. --> 10 <application android:name="android.support.multidex.MultiDexApplication" 11 android:label="@string/app_name" 12 android:hasCode="false" 13 android:allowBackup="false"> 14 <!-- Our activity is the built-in NativeActivity framework class. 15 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 android:screenOrientation="landscape"> 20 <!-- Tell NativeActivity the name of or .so --> 21 <meta-data android:name="android.app.lib_name" 22 android:value="FlatBufferTest" /> 23 <intent-filter> 24 <action android:name="android.intent.action.MAIN" /> 25 <category android:name="android.intent.category.LAUNCHER" /> 26 </intent-filter> 27 </activity> 28 </application> 29 30 </manifest> 31 <!-- END_INCLUDE(manifest) -->