Skip to content

Instantly share code, notes, and snippets.

@KsAmJ
Last active April 24, 2024 05:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KsAmJ/f76a82e4a490c9bc1d215fe500dd0bd2 to your computer and use it in GitHub Desktop.
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
<?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>
<?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