mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
The splash screen is an addition that was "forced" by the need to allow for permission granted to access external physical storage
69 lines
2.3 KiB
XML
69 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.scummvm.scummvm"
|
|
android:installLocation="auto"
|
|
android:launchMode="singleTask"
|
|
android:sharedUserId="org.scummvm.scummvm">
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.wifi"
|
|
android:required="false" />
|
|
<uses-feature
|
|
android:name="android.hardware.screen.landscape"
|
|
android:required="false" />
|
|
<uses-feature
|
|
android:name="android.hardware.touchscreen"
|
|
android:required="false" />
|
|
<uses-feature
|
|
android:name="android.software.leanback"
|
|
android:required="false" />
|
|
|
|
<supports-screens
|
|
android:largeScreens="true"
|
|
android:normalScreens="true"
|
|
android:smallScreens="true"
|
|
android:xlargeScreens="true" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:description="@string/app_desc"
|
|
android:icon="@mipmap/scummvm"
|
|
android:isGame="true"
|
|
android:label="@string/app_name"
|
|
android:resizeableActivity="false">
|
|
<activity
|
|
android:name=".SplashActivity"
|
|
android:banner="@drawable/leanback_icon"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:screenOrientation="landscape"
|
|
android:theme="@style/SplashTheme"
|
|
android:windowSoftInputMode="adjustResize">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
<category android:name="tv.ouya.intent.category.GAME" />
|
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".ScummVMActivity"
|
|
android:banner="@drawable/leanback_icon"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:screenOrientation="landscape"
|
|
android:theme="@style/AppTheme"
|
|
android:windowSoftInputMode="adjustResize">
|
|
<intent-filter>
|
|
<category android:name="tv.ouya.intent.category.GAME" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest>
|