Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame] | 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. --> |
Austin Schuh | 2dd86a9 | 2022-09-14 21:19:23 -0700 | [diff] [blame] | 9 | <application android:name="android.support.multidex.MultiDexApplication" |
| 10 | android:label="@string/app_name" |
Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame] | 11 | 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) --> |