okwasniewski / MiniSim

MacOS menu bar app for launching iOS  and Android 🤖 emulators

Home Page:https://www.minisim.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to add a custom command?

lucianomlima opened this issue · comments

I'm trying to start an Anroid emulator with some custom params. I try to use the following:

$android_home_path/emulator/emulator $device_name -feature -Vulkan

But I get this error:

Screenshot 2023-06-30 at 14 48 39

I'm on Macbook Pro M1 2020 with Ventura 13.4.1

Hey,

The emulator utility requires you to pass device name with an @ symbol. So the correct syntax for the custom command would be:

$android_home_path/emulator/emulator @$device_name -feature -Vulkan

However, if you want to pass this to every launch command you can use the Android additional launch parameters feature like so:

Screenshot 2023-07-02 at 10 09 51