forked from SRB2-Mobile/SRB2-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hopefully the original file fixes it...
- Loading branch information
1 parent
8bbe3d3
commit 89c87d3
Showing
1 changed file
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="org.stjr.srb2" | ||
android:versionCode="22131" | ||
android:versionName="2.2.13" | ||
android:installLocation="auto"> | ||
|
||
<!-- 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.bluetooth" | ||
android:required="false" /> | ||
<uses-feature | ||
android:name="android.hardware.gamepad" | ||
android:required="false" /> | ||
<uses-feature | ||
android:name="android.hardware.usb.host" | ||
android:required="false" /> | ||
|
||
<!-- External mouse input events --> | ||
<uses-feature | ||
android:name="android.hardware.type.pc" | ||
android:required="false" /> | ||
|
||
<!-- Allow storage access --> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <!-- Write implies read --> | ||
|
||
<!-- Allow access to Bluetooth devices --> | ||
<uses-permission android:name="android.permission.BLUETOOTH" /> | ||
<!-- Allow access to the vibrator --> | ||
<uses-permission android:name="android.permission.VIBRATE" /> | ||
|
||
<!-- Network access --> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
|
||
<application android:label="@string/app_name" | ||
android:icon="@mipmap/ic_launcher" | ||
android:isGame="true" | ||
android:allowBackup="true" | ||
android:theme="@style/AppTheme" | ||
android:hardwareAccelerated="true" > | ||
|
||
<activity android:name="SRB2Game" | ||
android:label="@string/app_name" | ||
android:alwaysRetainTaskState="true" | ||
android:launchMode="singleInstance" | ||
android:hardwareAccelerated="true" | ||
android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|keyboard|keyboardHidden|navigation" | ||
> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
</application> | ||
|
||
</manifest> |