Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added Android hardware feature support to the default manifest
  • Loading branch information
slouken committed Jun 6, 2018
1 parent 7c5f3cf commit 77709ae
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions android-project/app/src/main/AndroidManifest.xml
Expand Up @@ -14,6 +14,21 @@
<!-- 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 -->
Expand Down

0 comments on commit 77709ae

Please sign in to comment.