From 9cd2e9ec8fc0127393dfce9c0359d500c8c238be Mon Sep 17 00:00:00 2001
From: Edward Rudd <urkle@outoforder.cc>
Date: Tue, 09 Apr 2019 02:22:50 +0000
Subject: [PATCH] updae source to 2.0.9 source
---
source/android-project/app/src/main/AndroidManifest.xml | 18 +++++++++++++++---
1 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/source/android-project/app/src/main/AndroidManifest.xml b/source/android-project/app/src/main/AndroidManifest.xml
index 7e33072..25730cf 100644
--- a/source/android-project/app/src/main/AndroidManifest.xml
+++ b/source/android-project/app/src/main/AndroidManifest.xml
@@ -8,12 +8,24 @@
android:versionName="1.0"
android:installLocation="auto">
- <!-- Android 4.0.1 -->
- <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="16" />
-
<!-- OpenGL ES 2.0 -->
<uses-feature android:glEsVersion="0x00020000" />
+ <!-- Touchscreen support -->
+ <uses-feature
+ android:name="android.hardware.touchscreen"
+ android:required="false" />
+
+ <!-- Game controller support -->
+ <uses-feature
+ android:name="android.hardware.gamepad"
+ android:required="false" />
+
+ <!-- External mouse input events -->
+ <uses-feature
+ android:name="android.hardware.type.pc"
+ android:required="false" />
+
<!-- Allow writing to external storage -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- Allow access to the vibrator -->
--
Gitblit v1.9.3