1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="com.android.game.qualification.example">
4
5    <application
6        android:allowBackup="false"
7        android:hasCode="false"
8        android:label="SampleQualificationApp">
9
10        <!-- Our activity is the built-in NativeActivity framework class.
11         This will take care of integrating with our NDK code. -->
12        <activity android:name="android.app.NativeActivity"
13            android:configChanges="orientation|keyboardHidden">
14            <!-- Tell NativeActivity the name of our .so -->
15            <meta-data android:name="android.app.lib_name"
16                android:value="gamecore_sample" />
17            <intent-filter>
18                <action android:name="android.intent.action.MAIN" />
19                <category android:name="android.intent.category.LAUNCHER" />
20            </intent-filter>
21        </activity>
22    </application>
23</manifest>
24