mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 17:54:04 +00:00
415f84e13f
Basically it saves the apk file (that is used ONCE) in the external SD but all the data files are created in the same location in the internal partition Having it as preferExternal causes installation issues on some devices (have to remove the SD card to install the app..., then insert again)
43 lines
2.9 KiB
XML
43 lines
2.9 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.retroarch"
|
|
android:versionCode="48"
|
|
android:versionName="1.3.6"
|
|
android:installLocation="internalOnly">
|
|
<uses-feature android:glEsVersion="0x00020000" />
|
|
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
|
|
<uses-feature android:name="android.software.leanback" android:required="false" />
|
|
<uses-feature android:name="android.hardware.gamepad" android:required="false"/>
|
|
<uses-sdk
|
|
android:minSdkVersion="9"
|
|
android:targetSdkVersion="21" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="RetroArch"
|
|
android:hasCode="true"
|
|
android:isGame="true"
|
|
android:banner="@drawable/banner">
|
|
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
|
|
<activity android:name="com.retroarch.browser.mainmenu.MainMenuActivity" android:exported="true" android:launchMode="singleInstance">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
|
<category android:name="tv.ouya.intent.category.GAME" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="com.retroarch.browser.retroactivity.RetroActivityFuture" android:exported="true" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:launchMode="singleInstance">
|
|
<meta-data android:name="android.app.lib_name" android:value="retroarch-activity" />
|
|
<meta-data android:name="android.app.func_name" android:value="ANativeActivity_onCreate" />
|
|
</activity>
|
|
<activity android:name="com.retroarch.browser.retroactivity.RetroActivityPast" android:exported="true" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:launchMode="singleInstance">
|
|
<meta-data android:name="android.app.lib_name" android:value="retroarch-activity" />
|
|
<meta-data android:name="android.app.func_name" android:value="ANativeActivity_onCreate" />
|
|
</activity>
|
|
</application>
|
|
</manifest>
|