2019-06-29 02:35:14 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-03-29 20:46:13 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="emu.skyline">
|
2020-05-28 21:27:25 +02:00
|
|
|
|
2019-09-14 14:41:00 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2021-10-11 05:43:25 +02:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2020-05-28 21:27:25 +02:00
|
|
|
|
Framebuffer and NativeActivity
What was added:
* Framebuffer
* NativeActivity
* NV Services
* IOCTL Handler
* NV Devices:
* * /dev/nvmap - 0xC0080101, 0xC0080103, 0xC0200104, 0xC0180105, 0xC00C0109, 0xC008010E
* * /dev/nvhost-as-gpu
* * /dev/nvhost-channel - 0x40044801, 0xC0104809, 0xC010480B, 0xC018480C, 0x4004480D, 0xC020481A, 0x40084714
* * /dev/nvhost-ctrl
* * /dev/nvhost-ctrl-gpu - 0x80044701, 0x80284702, 0xC0184706, 0xC0B04705, 0x80084714
* SVCs:
* * SetMemoryAttribute
* * CreateTransferMemory
* * ResetSignal
* * GetSystemTick
* Addition of Compact Logger
What was fixed:
* SVCs:
* * SetHeapSize
* * SetMemoryAttribute
* * QueryMemory
* A release build would not set CMAKE_BUILD_TYPE to "RELEASE"
* The logger code was simplified
2019-11-13 21:09:31 +01:00
|
|
|
<uses-feature
|
2021-10-11 05:43:25 +02:00
|
|
|
android:name="android.hardware.vulkan.version"
|
|
|
|
android:required="true"
|
|
|
|
android:version="0x401000" />
|
|
|
|
|
2019-06-29 02:35:14 +02:00
|
|
|
<application
|
2021-03-29 20:46:13 +02:00
|
|
|
android:name=".SkylineApplication"
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:extractNativeLibs="true"
|
|
|
|
android:fullBackupContent="@xml/backup_descriptor"
|
|
|
|
android:icon="@drawable/logo_skyline"
|
|
|
|
android:isGame="true"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
tools:ignore="GoogleAppIndexingWarning,UnusedAttribute">
|
2021-10-26 07:15:49 +02:00
|
|
|
<activity
|
|
|
|
android:name="emu.skyline.MainActivity"
|
|
|
|
android:exported="true">
|
2019-12-02 14:41:23 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2021-10-26 07:15:49 +02:00
|
|
|
|
2019-07-03 01:19:45 +02:00
|
|
|
<activity
|
2021-03-29 20:46:13 +02:00
|
|
|
android:name="emu.skyline.SettingsActivity"
|
|
|
|
android:exported="true"
|
|
|
|
android:label="@string/settings"
|
|
|
|
android:parentActivityName="emu.skyline.MainActivity">
|
2019-07-03 01:19:45 +02:00
|
|
|
<meta-data
|
2021-03-29 20:46:13 +02:00
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="emu.skyline.MainActivity" />
|
2020-09-14 15:53:40 +02:00
|
|
|
</activity>
|
2021-10-26 07:15:49 +02:00
|
|
|
|
2020-05-28 21:27:25 +02:00
|
|
|
<activity
|
2021-03-29 20:46:13 +02:00
|
|
|
android:name="emu.skyline.input.ControllerActivity"
|
|
|
|
android:exported="true">
|
2020-05-28 21:27:25 +02:00
|
|
|
<meta-data
|
2021-03-29 20:46:13 +02:00
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="emu.skyline.SettingsActivity" />
|
2020-05-28 21:27:25 +02:00
|
|
|
</activity>
|
2021-10-26 07:15:49 +02:00
|
|
|
|
2020-10-03 11:58:34 +02:00
|
|
|
<activity
|
2021-03-29 20:46:13 +02:00
|
|
|
android:name="emu.skyline.input.onscreen.OnScreenEditActivity"
|
|
|
|
android:exported="true"
|
|
|
|
android:screenOrientation="landscape"
|
|
|
|
tools:ignore="LockedOrientationActivity">
|
2020-10-03 11:58:34 +02:00
|
|
|
<meta-data
|
2021-03-29 20:46:13 +02:00
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="emu.skyline.input.ControllerActivity" />
|
2020-10-03 11:58:34 +02:00
|
|
|
</activity>
|
2021-10-26 07:15:49 +02:00
|
|
|
|
Framebuffer and NativeActivity
What was added:
* Framebuffer
* NativeActivity
* NV Services
* IOCTL Handler
* NV Devices:
* * /dev/nvmap - 0xC0080101, 0xC0080103, 0xC0200104, 0xC0180105, 0xC00C0109, 0xC008010E
* * /dev/nvhost-as-gpu
* * /dev/nvhost-channel - 0x40044801, 0xC0104809, 0xC010480B, 0xC018480C, 0x4004480D, 0xC020481A, 0x40084714
* * /dev/nvhost-ctrl
* * /dev/nvhost-ctrl-gpu - 0x80044701, 0x80284702, 0xC0184706, 0xC0B04705, 0x80084714
* SVCs:
* * SetMemoryAttribute
* * CreateTransferMemory
* * ResetSignal
* * GetSystemTick
* Addition of Compact Logger
What was fixed:
* SVCs:
* * SetHeapSize
* * SetMemoryAttribute
* * QueryMemory
* A release build would not set CMAKE_BUILD_TYPE to "RELEASE"
* The logger code was simplified
2019-11-13 21:09:31 +01:00
|
|
|
<activity
|
2021-03-29 20:46:13 +02:00
|
|
|
android:name="emu.skyline.EmulationActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2021-10-26 07:15:49 +02:00
|
|
|
android:exported="true"
|
2021-10-23 20:46:49 +02:00
|
|
|
android:launchMode="singleTask"
|
2021-03-29 20:46:13 +02:00
|
|
|
android:screenOrientation="landscape"
|
|
|
|
tools:ignore="LockedOrientationActivity">
|
Framebuffer and NativeActivity
What was added:
* Framebuffer
* NativeActivity
* NV Services
* IOCTL Handler
* NV Devices:
* * /dev/nvmap - 0xC0080101, 0xC0080103, 0xC0200104, 0xC0180105, 0xC00C0109, 0xC008010E
* * /dev/nvhost-as-gpu
* * /dev/nvhost-channel - 0x40044801, 0xC0104809, 0xC010480B, 0xC018480C, 0x4004480D, 0xC020481A, 0x40084714
* * /dev/nvhost-ctrl
* * /dev/nvhost-ctrl-gpu - 0x80044701, 0x80284702, 0xC0184706, 0xC0B04705, 0x80084714
* SVCs:
* * SetMemoryAttribute
* * CreateTransferMemory
* * ResetSignal
* * GetSystemTick
* Addition of Compact Logger
What was fixed:
* SVCs:
* * SetHeapSize
* * SetMemoryAttribute
* * QueryMemory
* A release build would not set CMAKE_BUILD_TYPE to "RELEASE"
* The logger code was simplified
2019-11-13 21:09:31 +01:00
|
|
|
<meta-data
|
2021-03-29 20:46:13 +02:00
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="emu.skyline.MainActivity" />
|
2020-05-28 21:27:25 +02:00
|
|
|
|
2019-12-11 01:14:16 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2020-05-28 21:27:25 +02:00
|
|
|
|
2019-12-11 01:14:16 +01:00
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2020-05-28 21:27:25 +02:00
|
|
|
|
2019-12-11 01:14:16 +01:00
|
|
|
<data
|
2021-03-29 20:46:13 +02:00
|
|
|
android:mimeType="application/nro"
|
|
|
|
android:pathPattern=".*\\.nro"
|
|
|
|
android:scheme="content"
|
|
|
|
tools:ignore="AppLinkUrlError" />
|
2019-12-11 01:14:16 +01:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2020-05-28 21:27:25 +02:00
|
|
|
|
2019-12-11 01:14:16 +01:00
|
|
|
<data
|
2021-03-29 20:46:13 +02:00
|
|
|
android:mimeType="text/plain"
|
|
|
|
android:pathPattern=".*\\.nro"
|
|
|
|
android:scheme="content"
|
|
|
|
tools:ignore="AppLinkUrlError" />
|
2019-12-11 01:14:16 +01:00
|
|
|
<data
|
2021-03-29 20:46:13 +02:00
|
|
|
android:mimeType="application/octet-stream"
|
|
|
|
android:pathPattern=".*\\.nro"
|
|
|
|
android:scheme="content"
|
|
|
|
tools:ignore="AppLinkUrlError" />
|
2019-12-11 01:14:16 +01:00
|
|
|
<data
|
2021-03-29 20:46:13 +02:00
|
|
|
android:mimeType="application/nro"
|
|
|
|
android:scheme="content"
|
|
|
|
tools:ignore="AppLinkUrlError" />
|
2019-12-11 01:14:16 +01:00
|
|
|
</intent-filter>
|
Framebuffer and NativeActivity
What was added:
* Framebuffer
* NativeActivity
* NV Services
* IOCTL Handler
* NV Devices:
* * /dev/nvmap - 0xC0080101, 0xC0080103, 0xC0200104, 0xC0180105, 0xC00C0109, 0xC008010E
* * /dev/nvhost-as-gpu
* * /dev/nvhost-channel - 0x40044801, 0xC0104809, 0xC010480B, 0xC018480C, 0x4004480D, 0xC020481A, 0x40084714
* * /dev/nvhost-ctrl
* * /dev/nvhost-ctrl-gpu - 0x80044701, 0x80284702, 0xC0184706, 0xC0B04705, 0x80084714
* SVCs:
* * SetMemoryAttribute
* * CreateTransferMemory
* * ResetSignal
* * GetSystemTick
* Addition of Compact Logger
What was fixed:
* SVCs:
* * SetHeapSize
* * SetMemoryAttribute
* * QueryMemory
* A release build would not set CMAKE_BUILD_TYPE to "RELEASE"
* The logger code was simplified
2019-11-13 21:09:31 +01:00
|
|
|
</activity>
|
2021-06-21 18:00:15 +02:00
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
android:authorities="skyline.emu.fileprovider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/filepaths" />
|
|
|
|
</provider>
|
2019-06-29 02:35:14 +02:00
|
|
|
</application>
|
2019-09-14 14:41:00 +02:00
|
|
|
</manifest>
|