Is it possible to start the Xamarin Android Player device from the command line on a Mac?
I am writing automatic UI tests and want to start them with a bash script. For Android, I have to start the emulator first, and since the standard Android emulator is unacceptably slow, I need to use XAP.
Basically I am looking for a command similar to the "normal" command:
./emulator -avd NameOfYourEmulator -partition-size 512
for the Xamarin Android player. The command above does not work, because XAP devices are not saved as regular AVDs, but as .vdi files.
source
share