[Android] API, feature and permission requirements
This commit is contained in:
parent
9ef7fb62d3
commit
efb135b971
|
@ -9,6 +9,7 @@ android {
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "jp.xenia.emulator"
|
applicationId "jp.xenia.emulator"
|
||||||
|
// 24 (7.0) - Vulkan.
|
||||||
minSdkVersion 24
|
minSdkVersion 24
|
||||||
targetSdkVersion 30
|
targetSdkVersion 30
|
||||||
versionCode 1
|
versionCode 1
|
||||||
|
|
|
@ -2,6 +2,14 @@
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="jp.xenia.emulator">
|
package="jp.xenia.emulator">
|
||||||
|
|
||||||
|
<uses-feature android:name="android.hardware.vulkan.level" android:version="0" android:required="true" />
|
||||||
|
<uses-feature android:name="android.hardware.vulkan.version" android:version="0x400000" android:required="true" />
|
||||||
|
<!-- 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
|
<application
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
|
|
Loading…
Reference in New Issue