- Immersive mode in android-19 - Fixed local reference release in JNI helper - Misc fixes Change-Id: I3ab19c2b66648bb7a011c462d9d98e75bc136ce6
35 lines
1.4 KiB
XML
35 lines
1.4 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.sample.teapot"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="11"
|
|
android:targetSdkVersion="19" />
|
|
<uses-feature android:glEsVersion="0x00020000"></uses-feature>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme"
|
|
android:hasCode="true"
|
|
android:name="com.sample.teapot.TeapotApplication"
|
|
>
|
|
|
|
<!-- Our activity is the built-in NativeActivity framework class.
|
|
This will take care of integrating with our NDK code. -->
|
|
<activity android:name="com.sample.teapot.TeapotNativeActivity"
|
|
android:label="@string/app_name"
|
|
android:configChanges="orientation|keyboardHidden">
|
|
<!-- Tell NativeActivity the name of or .so -->
|
|
<meta-data android:name="android.app.lib_name"
|
|
android:value="TeapotNativeActivity" />
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|