summaryrefslogtreecommitdiff
path: root/samples/android/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'samples/android/AndroidManifest.xml')
-rwxr-xr-xsamples/android/AndroidManifest.xml11
1 files changed, 4 insertions, 7 deletions
diff --git a/samples/android/AndroidManifest.xml b/samples/android/AndroidManifest.xml
index 0fa3dcfc..352e0fad 100755
--- a/samples/android/AndroidManifest.xml
+++ b/samples/android/AndroidManifest.xml
@@ -17,17 +17,14 @@
-->
<!-- BEGIN_INCLUDE(manifest) -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.samples.FlatBufferSample"
- android:versionCode="1"
- android:versionName="1.0">
+ package="com.samples.FlatBufferSample">
<uses-feature android:glEsVersion="0x00020000"></uses-feature>
- <!-- This is the platform API where NativeActivity was introduced. -->
- <uses-sdk android:minSdkVersion="9" />
<!-- This .apk has no Java code itself, so set hasCode to false. -->
- <application android:label="@string/app_name" android:hasCode="false">
-
+ <application android:label="@string/app_name"
+ android:hasCode="false"
+ android:allowBackup="false">
<!-- Our activity is the built-in NativeActivity framework class.
This will take care of integrating with our NDK code. -->
<activity android:name="android.app.NativeActivity"