Last active
September 18, 2024 19:58
-
-
Save KsAmJ/f76a82e4a490c9bc1d215fe500dd0bd2 to your computer and use it in GitHub Desktop.
Add Yuzu support back to ES-DE (Android) + Android Native Apps Section and Support
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<ruleList> | |
<emulator name="YUZU"> | |
<!-- Nintendo Switch emulator Yuzu --> | |
<rule type="androidpackage"> | |
<entry>org.yuzu.yuzu_emu/org.yuzu.yuzu_emu.activities.EmulationActivity</entry> | |
</rule> | |
</emulator> | |
<emulator name="YUZU-EA"> | |
<!-- Nintendo Switch emulator Yuzu (Early Access) --> | |
<rule type="androidpackage"> | |
<entry>org.yuzu.yuzu_emu.ea/org.yuzu.yuzu_emu.activities.EmulationActivity</entry> | |
</rule> | |
</emulator> | |
<emulator name="APPS"> | |
<!-- App Launcher --> | |
<rule type="androidpackage"> | |
<entry>com.example.es_applauncher/com.example.es_applauncher.MainActivity</entry> | |
</rule> | |
</emulator> | |
</ruleList> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<systemList> | |
<system> | |
<name>switch</name> | |
<fullname>Nintendo Switch</fullname> | |
<path>%ROMPATH%/switch</path> | |
<extension>.nca .NCA .nro .NRO .nso .NSO .nsp .NSP .xci .XCI</extension> | |
<command label="Yuzu (Standalone)">%EMULATOR_YUZU% %ACTION%=android.nfc.action.TECH_DISCOVERED %DATA%=%ROMPROVIDER%</command> | |
<command label="Yuzu EA (Standalone)">%EMULATOR_YUZU-EA% %ACTION%=android.nfc.action.TECH_DISCOVERED %DATA%=%ROMPROVIDER%</command> | |
<command label="Skyline (Standalone)">%EMULATOR_SKYLINE% %ACTION%=android.intent.action.VIEW %DATA%=%ROMPROVIDER%</command> | |
<platform>switch</platform> | |
<theme>switch</theme> | |
</system> | |
<system> | |
<name>androidapps</name> | |
<fullname>Android Apps</fullname> | |
<path>%ROMPATH%/applauncher_apps</path> | |
<extension>.app</extension> | |
<command label="ES Applauncher">%EMULATOR_APPS% %EXTRA_GamePath%=%ROM%</command> | |
<platform>android</platform> | |
<theme>androidapps</theme> | |
</system> | |
<system> | |
<name>androidgames</name> | |
<fullname>Android Games</fullname> | |
<path>%ROMPATH%/applauncher_games</path> | |
<extension>.app</extension> | |
<command label="ES Applauncher">%EMULATOR_APPS% %EXTRA_GamePath%=%ROM%</command> | |
<platform>android</platform> | |
<theme>androidgames</theme> | |
</system> | |
</systemList> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment