blob: 65ce6430951ca1565e0216f626eba32a1ddeb852 [file] [log] [blame]
Austin Schuhe89fa2d2019-08-14 20:24:23 -07001<?xml version="1.0" encoding="utf-8"?>
Austin Schuhe89fa2d2019-08-14 20:24:23 -07002<!-- 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. -->
Austin Schuh2dd86a92022-09-14 21:19:23 -07009 <application android:name="android.support.multidex.MultiDexApplication"
10 android:label="@string/app_name"
Austin Schuhe89fa2d2019-08-14 20:24:23 -070011 android:hasCode="false"
12 android:allowBackup="false">
13 <!-- Our activity is the built-in NativeActivity framework class.
14 This will take care of integrating with our NDK code. -->
15 <activity android:name="android.app.NativeActivity"
16 android:label="@string/app_name"
17 android:configChanges="orientation|keyboardHidden"
18 android:screenOrientation="landscape">
19 <!-- Tell NativeActivity the name of or .so -->
20 <meta-data android:name="android.app.lib_name"
21 android:value="FlatBufferTest" />
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) -->