mirror of
https://github.com/xenia-project/xenia.git
synced 2026-01-28 19:34:18 +01:00
41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="jp.xenia.emulator">
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.vulkan.level"
|
|
android:required="true"
|
|
android:version="0" />
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.vulkan.version"
|
|
android:required="true"
|
|
android:version="0x400000" />
|
|
|
|
<!-- Granted automatically - guest sockets. -->
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<!--
|
|
Needs to be requested - loading games from outside the app data directory.
|
|
WRITE_EXTERNAL_STORAGE is not required to write to the external app data directory since API 19.
|
|
-->
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@android:style/Theme.Material.Light">
|
|
|
|
<activity android:name="jp.xenia.emulator.WindowDemoActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest> |