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"
|
2019-09-14 14:41:00 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-09-24 22:54:27 +02:00
|
|
|
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" />
|
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
|
|
|
|
android:glEsVersion="0x00030001"
|
|
|
|
android:required="true" />
|
2020-05-28 21:27:25 +02:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2019-06-29 02:35:14 +02:00
|
|
|
<application
|
2020-10-03 12:09:35 +02:00
|
|
|
android:name=".SkylineApplication"
|
2019-07-24 22:19:43 +02:00
|
|
|
android:allowBackup="true"
|
2020-01-15 19:58:58 +01:00
|
|
|
android:extractNativeLibs="true"
|
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
|
|
|
android:fullBackupContent="@xml/backup_descriptor"
|
2019-09-24 22:54:27 +02:00
|
|
|
android:icon="@drawable/logo_skyline"
|
2019-07-24 22:19:43 +02:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme"
|
2019-12-02 14:41:23 +01:00
|
|
|
tools:ignore="GoogleAppIndexingWarning,UnusedAttribute">
|
|
|
|
<activity android:name="emu.skyline.MainActivity">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-09-14 14:41:00 +02:00
|
|
|
<activity
|
2019-09-24 22:54:27 +02:00
|
|
|
android:name="emu.skyline.LogActivity"
|
2019-09-14 14:41:00 +02:00
|
|
|
android:label="@string/log"
|
2019-09-24 22:54:27 +02:00
|
|
|
android:parentActivityName="emu.skyline.MainActivity">
|
2019-07-24 22:19:43 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2019-09-24 22:54:27 +02:00
|
|
|
android:value="emu.skyline.MainActivity" />
|
2019-07-24 22:19:43 +02:00
|
|
|
</activity>
|
2019-07-03 01:19:45 +02:00
|
|
|
<activity
|
2019-09-24 22:54:27 +02:00
|
|
|
android:name="emu.skyline.SettingsActivity"
|
2020-05-28 21:27:25 +02:00
|
|
|
android:exported="true"
|
2019-07-24 22:19:43 +02:00
|
|
|
android:label="@string/settings"
|
2019-09-24 22:54:27 +02:00
|
|
|
android:parentActivityName="emu.skyline.MainActivity">
|
2019-07-03 01:19:45 +02:00
|
|
|
<meta-data
|
2019-07-24 22:19:43 +02:00
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2019-09-24 22:54:27 +02:00
|
|
|
android:value="emu.skyline.MainActivity" />
|
2019-07-03 01:19:45 +02:00
|
|
|
</activity>
|
2020-04-12 18:12:46 +02:00
|
|
|
<activity android:name="emu.skyline.preference.FolderActivity">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2019-12-02 14:41:23 +01:00
|
|
|
android:value="emu.skyline.SettingsActivity" />
|
|
|
|
</activity>
|
2020-09-14 15:53:40 +02:00
|
|
|
<activity android:name="emu.skyline.preference.FileActivity">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="emu.skyline.SettingsActivity" />
|
|
|
|
</activity>
|
2020-05-28 21:27:25 +02:00
|
|
|
<activity
|
|
|
|
android:name="emu.skyline.input.ControllerActivity"
|
|
|
|
android:exported="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="emu.skyline.SettingsActivity" />
|
|
|
|
</activity>
|
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
|
2020-04-03 13:47:32 +02:00
|
|
|
android:name="emu.skyline.EmulationActivity"
|
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
|
|
|
android:configChanges="orientation|screenSize"
|
2020-02-15 10:38:17 +01:00
|
|
|
android:launchMode="singleInstance"
|
2020-04-12 18:12:46 +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
|
|
|
|
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
|
|
|
|
android:mimeType="application/nro"
|
|
|
|
android:pathPattern=".*\\.nro"
|
|
|
|
android:scheme="content"
|
|
|
|
tools:ignore="AppLinkUrlError" />
|
|
|
|
</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
|
|
|
|
android:mimeType="text/plain"
|
|
|
|
android:pathPattern=".*\\.nro"
|
|
|
|
android:scheme="content"
|
|
|
|
tools:ignore="AppLinkUrlError" />
|
|
|
|
<data
|
|
|
|
android:mimeType="application/octet-stream"
|
|
|
|
android:pathPattern=".*\\.nro"
|
|
|
|
android:scheme="content"
|
|
|
|
tools:ignore="AppLinkUrlError" />
|
|
|
|
<data
|
|
|
|
android:mimeType="application/nro"
|
|
|
|
android:scheme="content"
|
|
|
|
tools:ignore="AppLinkUrlError" />
|
|
|
|
</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>
|
2019-06-29 02:35:14 +02:00
|
|
|
</application>
|
2019-09-14 14:41:00 +02:00
|
|
|
</manifest>
|