why are android emulators either nonexistent or utterly useless?

Mandy@beehaw.org to Linux@lemmy.ml – 121 points –

the one thing linux really hasnt been made on par with winblows yet is the dreadful amount of options for android simulation -the most popular choice seems to be Waydroid, but its such an unneeded hassle to set up at all -genymotion is just slow -and than you have things like android x86 which entirely defeat the point of an emulator

120

You are viewing a single comment

Instead of an emulator, what about a VM? Does that option exist?

What would you put in the VM? Each Android ROM is highly hardware dependent and each device's internal storage is highly fragmented into a couple dozen partitions configured in proprietary formats.

Theoretically a GSI ROM is supposed to be hardware-independent thanks to Treble but you would still need a common base to go with any GSI ROM and I'm not sure a generic one has been made specifically for use in a VM.

What would you put in the VM? Each Android ROM is highly hardware dependent and each device’s internal storage is highly fragmented into a couple dozen partitions configured in proprietary formats.

Android x86 and derivatives are as generic as possible, like any other linux ISO you can flash it to most any computer assuming the kernel is new enough, Bliss OS is up to date with the latest LTS kernel based on xanmod, and android 12L

Just androidx86.That's an Android distro highly customized to running in a VM.

no it isn't, it isnt that at all, that is so far off the mark it's extraordinary. Android x86 is as it's name implies, a generic x86 iso. you can install it to physical hardware or a VMM equally the same, in fact, it's literally the exact opposite of highly customized.

it's explicitly as generic as it can be

Apparently you never had a look at it. Getting Android to run on x86 is by far not trivial these days. To make it work, Android-x86 has a lot of modifications over AOSP, including drivers, HAL and a lot more.

Just checkout their Git to see what they had to do to get it working.

I am intimately familiar, it is not highly customized for VMs, it is as generic as it can be. a lot of work was put into making it work on x86 as a whole, but not just VMs.

Ever seen a single instance in the real world where this is running outside of a VM?

Yes. Many. Blisslabs has partnerd with EIDU to work on tablets for low income countries. I personally have sold android boxes with Bliss. Ax86 has a large number of sponsors that are/were casinos. There are people working on using it in cars. 2-In-1s. ETC.

VMs are the minority use case...

VM = x86 = android-x86 which OP already mentioned

No, qemu can run ARM images with ease. If I recall correctly, waydroid is using that approach

it's not. waydroid and bliss both use libhoudini/libndk like most other android systems.

Thanks for the correction, has been a while since I used waydroid :)

Nah, they'd be as slow as a 486 running modern Windows if that was their approach

yeah but android emulators = VM = x86 = android-x86

There's a bit more to an emulator than simply running Android on x86 hardware.

not really no. I mean, sure you could add a fancy gui on top of it. but 90% of android emulators are some kind of android x86 + libhoudini/ndk + vmm. some modify surfaceflinger so that each application will render to it's own window, but usually it's just disabling launcher, and sending some kind of command to open the app from a gui (IE. sending adb launch commands)

Yes and no.

In general it is true that an emulator just needs to translate instructions, but for things like games and the Android operating system, your emulator also needs to use whatever hardware acceleration you have or it will run like dogshit.

Android makes extensive use of graphical acceleration to the point where it is a mandatory requirement. There is no part of the UI that doesn't use hardware acceleration.

Luckily Android uses OpenGL ES, and there are means to translate that into Vulkan without too much issue.

But what you're talking about is virtualisation for the most part - the only thing arguably doing any actual emulation in your scenario is libhoudini. Otherwise, there isn't any translation of instructions - The Android VM instructions get executed directly on Ring 0 of the CPU

whatever hardware acceleration you have or it will run like dogshit.

and? vbox, qemu, hyperv and vmware, all have gpu acceleration to a degree. Qemu will also be getting vulkan acceleration soon

EDIT: forgot crosvm (google play games) which does too

And therefore it means that in addition to doing translation work, they themselves need to implement hardware acceleration. That's why you see many game emulators requiring DirectX even if the console in question never used it.

Oh, and 4 of the 5 products you mentioned are not emulators. Of the 5, only QEMU is fully capable of emulation. There is a massive and important difference between virtual machines and emulation.

nearly every single emulator, for Windows is a VM pretty much. Blue stacks, memuplay, WSA, Google Play games.

no, there is no difference between virtualization and emulation. virtualizations just hardware accelerated emulation. That's it. If you use blue stacks and call it emulation, because it's emulation, all the sudden it's not emulation because it's virtualization?

If that is the bar, then there are incredibly few Android emulators. Yes some Android emulators, or rather virtualizers, do implement some custom GPU acceleration stuff. but not all, Google Play games uses CrossVM with vulkan cereal, WSA uses their weird stack. genymotion IIRC uses virgl, so does qemu.

EDIT: by the way, with VirtualBox VMware so and so forth, you are still emulating. you are emulating NICs, oftentimes you are emulating GPU, you are emulating storage controllers, you are emulating PCI controllers, so on and so forth.

no, there is no difference between virtualization and emulation.

Yes there is.

virtualizations just hardware accelerated emulation. That’s it.

Actually it's the opposite: virtualisation does as little emulation as possible. At a high level, it acts more as a ring-fence around native resources than an actual emulator. With most virtualisation, the only things that are getting emulated are minor components with little computing involved like sound and networking cards.

The reason virtualisation is so fast compared to emulation is because it's running the code as-is and not translating it.

If that is the bar, then there are incredibly few Android emulators.

That is correct. You basically have QEMU and that's it.

oftentimes you are emulating GPU.

Not exactly. If you are not doing GPU passthrough, either fixed or mediated, most virtualisation software use API forwarding for 3D acceleration APIs. That is, the hypervisor passes calls to Vulkan, DirectX, etc, from the guest to the host, has the host's GPU render it, then pass it back.

GPU emulation is a very last resort, as the performance is dreadful.

Virtualization is a specialization of emulation. to emulate something merely means to imitate. virtualization is still emulating a secondary PC environment. Saying virtualisation is not emulation is just fudging terms because people don't like the implication that the term "emulation" has. I recommend reading WINE's FAQ where even they admit that it would be more accurate to say "wine is not just an emulator". Virtualization is just a subclass of emulation.

most virtualisation software use API forwarding for 3D acceleration APIs

this is a common misconception Most VMMs emulate GPU. virtualbox, vmware, wsa, and qemu all emulate GPU (or rather, technically a gallium driver) for opengl support on linux and even windows. as windows guests under virtualbox actually uses gallium nine/dxvk under the hood (perf is still crap somehow though). the technical breakdown for qemu would be [ host gpu <--> gallium <--> opengl <--> qemu pipe <--> virgl <--> gallium calls <--> opengl <--> application ]

vmware/vbox are slightly different as it's an accelerated backend to vmgfx but that too emulates a gallium backend on linux meaning it's doing ogl -> gallium -> ogl etc.... Hyper-v/wsa is the exact same situation as both. I don't believe that bluestacks and memuplay deviates from this greatly. though it's not something I have looked in depth into.

it wasn't until recently with virglrenderer venus for qemu/crosvm and hyper-v gpu-pv that we have gotten real API forwarding for VMs (technically android's cuttlefish also had it IIRC, but preformance was terrible when I played with it, hyper-v also had something but it was really bad too).

as for other forms of api forwarding, qemu-3dfx is a prime example of real "api forwarding" to an extent, rather it forwards 3dfx and opengl calls to the host. and you can have d3d support via wined3d.

2 more...
2 more...
2 more...
2 more...
2 more...