This commit is contained in:
Dragoon Dorise 2024-01-28 01:21:27 +01:00
parent e4f0c63801
commit d222b7eec9
182 changed files with 21290 additions and 5 deletions

View file

@ -0,0 +1,31 @@
#!/bin/bash
#Default settings for all systems
android_doSetupRA=true
android_doSetupDolphin=true
android_doSetupYuzu=true
android_doSetupCitra=true
android_doSetupPPSSPP=true
android_doSetupAetherSX2=true
#Install all systems by default
android_doInstallRA=true
android_doInstallDolphin=true
android_doInstallYuzu=true
android_doInstallCitra=true
android_doInstallPPSSPP=true
android_doInstallAetherSX2=true
#Default RetroArch configuration
android_RABezels=true
android_RAautoSave=false
android_achievementsPass=false
android_achievementsUser=false
android_arClassic3D=43
android_arDolphin=43
android_arSega=43
android_arSnes=43
android_RAHandClassic2D=true
android_RAHandClassic3D=false
android_RAHandHeldShader=true

13
android/api.sh Normal file
View file

@ -0,0 +1,13 @@
#!/bin/bash
#
##
### Darwin overrides
##
#
API_pull(){
local branch=$1
cd ~/.config/EmuDeck/backend && git reset --hard && git clean -fd && git checkout ${branchGIT} && git pull && . ~/.config/EmuDeck/backend/functions/all.sh && appImageInit
}

1
android/configs/RetroArch Symbolic link
View file

@ -0,0 +1 @@
../../configs/org.libretro.RetroArch/config/retroarch

View file

@ -0,0 +1,11 @@
#!/bin/bash
function AetherSX2_install(){
temp_url="https://www.aethersx2.com/archive/android/14026-v1.4-3064.apk"
temp_emu="aethersx2"
Android_ADB_dl_installAPK $temp_emu $temp_url
}
function AetherSX2_init(){
echo "NYI"
}

View file

@ -0,0 +1,11 @@
#!/bin/bash
function Android_Citra_install(){
temp_url="$(getLatestReleaseURLGH "weihuoya/citra" ".apk")"
temp_emu="citra"
Android_ADB_dl_installAPK $temp_emu $temp_url
}
function Android_Citra_init(){
echo "NYI"
}

View file

@ -0,0 +1,11 @@
#!/bin/bash
function Android_Dolphin_install(){
temp_url="$(getLatestReleaseURLGH "Medard22/Dolphin-MMJR2-VBI" ".apk")"
temp_emu="dolphinmmjr2"
Android_ADB_dl_installAPK $temp_emu $temp_url
}
function Android_Dolphin_init(){
echo "NYI"
}

View file

@ -0,0 +1,11 @@
#!/bin/bash
function Android_PPSSPP_install(){
temp_url="https://www.ppsspp.org/files/1_16_6/ppsspp.apk"
temp_emu="ppsspp"
Android_ADB_dl_installAPK $temp_emu $temp_url
}
function Android_PPSSPP_init(){
echo "NYI"
}

View file

@ -0,0 +1,19 @@
#!/bin/bash
function Android_RetroArch_install(){
temp_url="https://buildbot.libretro.com/stable/1.16.0/android/RetroArch_aarch64.apk"
temp_emu="ra"
Android_ADB_dl_installAPK $temp_emu $temp_url
}
function Android_RetroArch_init(){
RetroArch_emuPath="org.libretro.RetroArch"
RetroArch_releaseURL=""
RetroArch_path="$HOME/EmuDeckAndroid/RetroArch/config/"
RetroArch_configFile="$HOME/EmuDeckAndroid/RetroArch/config/retroarch.cfg"
RetroArch_coreConfigFolders="$HOME/EmuDeckAndroid/RetroArch/config"
RetroArch_cores="$HOME/EmuDeckAndroid/RetroArch/config/cores"
RetroArch_coresURL="https://buildbot.libretro.com/nightly/android/latest/arm64-v8a/"
RetroArch_coresExtension="so.zip"
RetroArch_init
}

View file

@ -0,0 +1,11 @@
#!/bin/bash
function Android_ScummVM_install(){
temp_url="https://downloads.scummvm.org/frs/scummvm/2.8.0/scummvm-2.8.0-android-arm64-v8a.apk"
temp_emu="scummvm"
Android_ADB_dl_installAPK $temp_emu $temp_url
}
function Android_ScummVM_init(){
echo "NYI"
}

View file

@ -0,0 +1,11 @@
#!/bin/bash
function Android_Vita3K_install(){
temp_url="$(getLatestReleaseURLGH "Vita3K/Vita3K-Android" ".apk")"
temp_emu="vita3k"
Android_ADB_dl_installAPK $temp_emu $temp_url
}
function Android_Vita3K_init(){
echo "NYI"
}

View file

@ -0,0 +1,11 @@
#!/bin/bash
function Android_Yuzu_install(){
temp_url="$(getLatestReleaseURLGH "yuzu-emu/yuzu-android" ".apk")"
temp_emu="yuzu"
Android_ADB_dl_installAPK $temp_emu $temp_url
}
function Android_Yuzu_init(){
echo "NYI"
}

View file

@ -0,0 +1,81 @@
#!/bin/bash
#https://dl.google.com/android/repository/platform-tools-latest-linux.zip
#https://dl.google.com/android/repository/platform-tools-latest-darwin.zip
#https://dl.google.com/android/repository/platform-tools-latest-windows.zip
source "./functions/helperFunctions.sh"
Android_ADB_path="$HOME/emudeck/android/platform-tools"
Android_ADB_url="https://dl.google.com/android/repository/platform-tools-latest-darwin.zip"
function Android_ADB_isInstalled(){
if [ -e "$Android_ADB_path" ]; then
echo "true"
return 0
else
echo "false"
return 1
fi
}
function Android_ADB_install(){
local outFile="adb.zip"
local outDir="$HOME/emudeck/android/"
Android_download "$outFile" "$Android_ADB_url" && unzip -o "$outFile" -d $outDir && rm -rf $outFile && echo "true" && return 0
}
function Android_download(){
local outDir="$HOME/emudeck/android/"
local outFile="$HOME/emudeck/android/$1"
local url=$2
mkdir -p $outDir
request=$(curl -w $'\1'"%{response_code}" --fail -L "$url" -o "${outFile}.temp" 2>&1 && echo $'\2'0 || echo $'\2'$?)
returnCodes="${request#*$'\1'}"
httpCode="${returnCodes%$'\2'*}"
exitCode="${returnCodes#*$'\2'}"
if [ "$httpCode" = "200" ]; then
mv -v "$outFile.temp" "$outFile"
return 0
else
echo "false"
return 1
fi
}
function Android_ADB_connected(){
local output=$(adb devices)
local device_count=$(echo "$output" | grep -E "device\b" | wc -l)
if [ "$device_count" -gt 0 ]; then
echo "true"
return 0
else
echo "false"
return 1
fi
}
function Android_ADB_push(){
export PATH=$PATH:$Android_ADB_path
echo "NYI"
}
Android_ADB_installAPK(){
local apk=$1
export PATH=$PATH:$Android_ADB_path
adb install $apk && rm -rf $apk
}
Android_ADB_dl_installAPK(){
local temp_emu=$1
local temp_url=$2
Android_download "$temp_emu.apk" $temp_url
Android_ADB_installAPK "$HOME/emudeck/android/$temp_emu.apk"
}

View file

@ -0,0 +1,11 @@
#!/bin/bash
function Android_Daijisho_install(){
temp_url="$(getLatestReleaseURLGH "TapiocaFox/Daijishou" ".apk")"
temp_emu="daijishou"
Android_ADB_dl_installAPK $temp_emu $temp_url
}
function Android_Daijisho_init(){
echo "NYI"
}

View file

@ -0,0 +1,11 @@
#!/bin/bash
function Android_Pegasus_install(){
temp_url="https://github.com/mmatyas/pegasus-frontend/releases/download/continuous/pegasus-fe_alpha16-75-gc78a6851_android64.apk"
temp_emu="yuzu"
Android_ADB_dl_installAPK $temp_emu $temp_url
}
function Android_Pegasus_init(){
echo "NYI"
}

16
android/functions/all.sh Normal file
View file

@ -0,0 +1,16 @@
#!/bin/bash
source "$HOME/emudeck/android_settings.sh"
source "$EMUDECKGIT"/android/functions/EmuScripts/Android_Yuzu.sh
source "$EMUDECKGIT"/android/functions/EmuScripts/Android_PCSX2.sh
source "$EMUDECKGIT"/android/functions/EmuScripts/Android_Citra.sh
source "$EMUDECKGIT"/android/functions/EmuScripts/Android_Dolphin.sh
source "$EMUDECKGIT"/android/functions/EmuScripts/Android_RetroArch.sh
source "$EMUDECKGIT"/android/functions/EmuScripts/Android_PPSSPP.sh
source "$EMUDECKGIT"/android/functions/EmuScripts/Android_ScummVM.sh
source "$EMUDECKGIT"/android/functions/EmuScripts/Android_Vita3K.sh
source "$EMUDECKGIT"/android/functions/ToolScripts/Android_ADB.sh
source "$EMUDECKGIT"/android/functions/ToolScripts/Android_Daijisho.sh
source "$EMUDECKGIT"/android/functions/ToolScripts/Android_Pegasus.sh

View file

@ -0,0 +1 @@
#!/bin/bash

View file

@ -0,0 +1,15 @@
#!/bin/bash
#Override Vars
#RetroArch_configFile="$HOME/Library/Application Support/RetroArch/config/retroarch.cfg"
#RetroArch_coreConfigFolders="$HOME/Library/Application Support/RetroArch/config"
#RetroArch_cores="$HOME/Library/Application Support/RetroArch/cores"
#RetroArch_path="$HOME/Library/Application Support/RetroArch"
#RetroArch_coresURL="https://buildbot.libretro.com/nightly/apple/osx/${appleChip}/latest/"
#RetroArch_coresExtension="dylib.zip"
#
#pegasus_emuPath="pegasus-frontend"
#pegasus_path="$HOME/Library/Preferences/$pegasus_emuPath"
#pegasus_dir_file="$pegasus_path/game_dirs.txt"
#pegasus_config_file="$pegasus_path/settings.txt"
#

View file

@ -0,0 +1,16 @@
collection: 3DO
shortname: 3do
extensions: bin, chd, cue, iso, zip
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/opera_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1,4 @@
collection: Nintendo 3DS
shortname: 3ds
extensions: 3ds, 3dsx, app, axf, cci, cxi, elf
launch: am start -n org.citra.emu/.ui.EmulationActivity -a android.intent.action.VIEW -e GamePath {file.path}

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1,9 @@
collection: Amiga
shortname: amiga
extensions: 7z, adf, adz, ccd, chd, cue, dms, fdi, hdf, hdz, info, ipf, iso, lha, m3u, mds, nrg, rp9, slave, uae, zip
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/puae_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e QUITFOCUS

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1,14 @@
collection: CPC/GX4000
shortname: cpc
extensions: cdt, cpr, dsk, m3u, sna, tap, voc, zip
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/cap32_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files
--activity-no-history

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your Mame Current roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1,14 @@
collection: Atari ST/STE/TT/Falcon
shortname: atarist
extensions: dim, ipf, m3u, msa, st, stx, zip
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/hatari_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files
--activity-no-history

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1,13 @@
collection: Atomiswave
shortname: atomiswave
extensions: 7z, bin, cdi, chd, cue, dat, elf, gdi, iso, lst, m3u, zip
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/flycast_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1,14 @@
collection: ColecoVision
shortname: colecovision
extensions: bin, col, cv, rom
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/gearcoleco_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files
--activity-no-history

View file

@ -0,0 +1,14 @@
collection: CP System I
shortname: fba
extensions: zip
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/fbalpha2012_cps1_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files
--activity-no-history

View file

@ -0,0 +1,14 @@
collection: CP System II
shortname: fba
extensions: zip
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/fbalpha2012_cps2_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files
--activity-no-history

View file

@ -0,0 +1,16 @@
collection: CP System III
shortname: fba
extensions: zip
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/fbalpha2012_cps3_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files
--activity-no-history

View file

@ -0,0 +1,16 @@
collection: Arcade (Daphne)
shortname: daphne
extensions: zip
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/daphne_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files
--activity-no-history

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1,13 @@
collection: DooM
shortname: doom
extensions: iwad, pwad, wad, zip, 7z
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/prboom_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1,16 @@
collection: DOS
shortname: dos
extensions: bat, com, conf, exe, zip, 7z
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/dosbox_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1,7 @@
collection: Dreamcast
shortname: dreamcast
extensions: 7z, bin, cdi, chd, cue, dat, elf, gdi, iso, lst, m3u, zip
launch: am start
-n io.recompiled.redream/.MainActivity
-a android.intent.action.VIEW
-d "{file.path}"

View file

@ -0,0 +1,13 @@
collection: Sega Dreamcast
shortname: dreamcast
extensions: 7z, bin, cdi, chd, cue, dat, elf, gdi, iso, lst, m3u, zip
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/flycast_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1,13 @@
collection: Arcade (FBA)
shortname: fba
extensions: 7z, iso, zip
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/fbalpha2012_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1,13 @@
collection: Arcade (FBN)
shortname: fbn
extensions: 7z, cue, zip
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/fbneo_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1,13 @@
collection: Game & Watch
shortname: gameandwatch
extensions: zip, 7z
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/gw_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1,7 @@
collection: GameCube
shortname: gamecube
extensions: ciso, dff, dol, elf, gcm, gcz, iso, tgc, wad, wbfs, zip, 7z, rvz
launch: am start
-n org.mm.jr/org.dolphinemu.dolphinemu.ui.main.MainActivity
-a android.intent.action.VIEW
--es AutoStartFile "{file.path}"

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1,13 @@
collection: Game Gear
shortname: gamegear
extensions: 68k, bin, chd, cue, gen, gg, iso, md, mdx, sg, smd, sms, zip, 7z
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/genesis_plus_gx_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1,13 @@
collection: Game Boy
shortname: gb
extensions: dmg, gb, zip, 7z
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/gambatte_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1,13 @@
collection: Game Boy Advance
shortname: gba
extensions: gba, zip, 7z
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/mgba_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1,13 @@
collection: Game Boy Color
shortname: gbc
extensions: gbc, zip, 7z
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/gambatte_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1,7 @@
collection: GameCube
shortname: gc
extensions: ciso, dff, dol, elf, gcm, gcz, iso, tgc, wad, wbfs, zip, 7z, rvz
launch: am start
-n org.mm.jr/org.dolphinemu.dolphinemu.ui.main.MainActivity
-a android.intent.action.VIEW
--es AutoStartFile "{file.path}"

View file

@ -0,0 +1,15 @@
collection: Sega Genesis
shortname: genesis
extensions: 7z, bin, gen, md, sg, smd, zip
launch: am start --user 0
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM "{file.path}"
-e LIBRETRO /data/data/com.retroarch/cores/genesis_plus_gx_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e DOWNLOADS /storage/emulated/0/Download
-e SCREENSHOTS /storage/emulated/0/Pictures
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1,15 @@
collection: Sega Genesis Widescreen
shortname: genesis
extensions: 7z, bin, gen, md, sg, smd, zip
launch: am start --user 0
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM "{file.path}"
-e LIBRETRO /data/data/com.retroarch/cores/genesis_plus_gx_wide_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e DOWNLOADS /storage/emulated/0/Download
-e SCREENSHOTS /storage/emulated/0/Pictures
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1,13 @@
collection: Intellivision
shortname: intellivision
extensions: bin, int, rom, zip, 7z
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/freeintv_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1,14 @@
collection: Lutro
shortname: lutro
extensions: love, lua, lutro
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/lutro_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files
--activity-no-history

View file

@ -0,0 +1,13 @@
collection: Lynx
shortname: atarilynx
extensions: lnx, o, zip, 7z
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/mednafen_lynx_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1 @@
place your MAME 2010 (MAME 0.139) roms here

View file

@ -0,0 +1,13 @@
collection: Master System
shortname: mastersystem
extensions: 68k, bin, chd, cue, gen, gg, iso, md, mdx, sg, smd, sms, zip, 7z
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/genesis_plus_gx_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1,14 @@
collection: MSX/SVI/ColecoVision/SG-1000
shortname: msx
extensions: cas, col, dsk, m3u, mx1, mx2, ri, rom, sc, sg
launch: am start
-n com.retroarch/.browser.retroactivity.RetroActivityFuture
-e ROM {file.path}
-e LIBRETRO /data/data/com.retroarch/cores/bluemsx_libretro_android.so
-e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch/files/retroarch.cfg
-e IME com.android.inputmethod.latin/.LatinIME
-e DATADIR /data/data/com.retroarch
-e APK /data/app/com.retroarch-1/base.apk
-e SDCARD /storage/emulated/0
-e EXTERNAL /storage/emulated/0/Android/data/com.retroarch/files
--activity-no-history

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1 @@
place your roms here

View file

@ -0,0 +1,7 @@
collection: Nintendo 64
shortname: n64
extensions: bin, n64, ndd, u1, v64, z64, zip, 7z
launch: am start
-n org.mupen64plusae.v3.fzurita/paulscode.android.mupen64plusae.SplashActivity
-a android.intent.action.VIEW
-d "{file.path}"

Some files were not shown because too many files have changed in this diff Show more