mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
3b332f7270
We need to stop pretending that we "support" GLES 2.0 devices. We are a high performance application that requires GLES 3.0, which was officially supported in Android 4.3. The few Android phones that released with Android 4.2 and supported OpenGL ES 3.0 have already been updated to a later Android version.
59 lines
2.1 KiB
XML
59 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.dolphinemu.dolphinemu"
|
|
android:versionCode="13"
|
|
android:versionName="0.13"
|
|
android:installLocation="auto">
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="18"
|
|
android:targetSdkVersion="21" />
|
|
|
|
<uses-feature android:glEsVersion="0x00030000" />
|
|
|
|
<uses-feature android:name="android.hardware.screen.landscape" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<application
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:allowBackup="true"
|
|
android:supportsRtl="true">
|
|
<activity
|
|
android:name="org.dolphinemu.dolphinemu.gamelist.GameListActivity"
|
|
android:label="@string/app_name"
|
|
android:theme="@android:style/Theme.Holo.Light" >
|
|
|
|
<!-- This intentfilter marks this Activity as the one that gets launched from Home screen.-->
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name="org.dolphinemu.dolphinemu.about.AboutActivity"
|
|
android:theme="@android:style/Theme.Holo.Light" />
|
|
|
|
<activity
|
|
android:name="org.dolphinemu.dolphinemu.emulation.EmulationActivity"
|
|
android:screenOrientation="landscape" />
|
|
|
|
<activity
|
|
android:name="org.dolphinemu.dolphinemu.settings.input.overlayconfig.OverlayConfigActivity"
|
|
android:screenOrientation="landscape"
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
|
|
|
|
<activity
|
|
android:name="org.dolphinemu.dolphinemu.settings.PrefsActivity"
|
|
android:label="@string/settings"
|
|
android:theme="@android:style/Theme.Holo.Light" />
|
|
|
|
<service android:name=".AssetCopyService"/>
|
|
|
|
</application>
|
|
|
|
</manifest>
|