Our valued sponsor

Android virtualization

void

freedom addicted ultra relativist
Pro Member
Oct 3, 2017
2,096
1,866
113
Register now
You must login or register to view hidden content on this page.
Looking for hints how to virtualize an Android system and share access amongst multiple users.
One typical use case is to avoid dependency on a single smartphone with installed app that doesn't support alternative devices being associated with the same user account.
 
Last edited:
Looking for hints how to virtualize an Android system and share access amongst multiple users.
One typical use case is to avoid dependency on a single smartphone with installed app that doesn't support alternative devices being associated with the same user account.

You may use KVM virtual machine - AOSP image or Microdroid depending on a deployment scale - and access it via VNC.

Do any of those have the ability to custom set the GPS location?

@aniglo22 provided an answer so I offer a complement. You may set custom GNSS data programatically via ADB

Bash:
adb shell "am broadcast -a android.intent.action.LOCATION --es longitude $longitude --es latitude $latitude"
 
thanks for your suggestions guys
does any of the proposed solutions support (more or less) effortless remote access from an Android smart phone? Basically want to mirror the screen and (if possible) basic interfaces from the remote virtualized system to the device I hold in my palm, ideally being able to switch between couple of those.
 
thanks for your suggestions guys
does any of the proposed solutions support (more or less) effortless remote access from an Android smart phone? Basically want to mirror the screen and (if possible) basic interfaces from the remote virtualized system to the device I hold in my palm, ideally being able to switch between couple of those.

VNC session could be established to KVM virtual machine from Android VNC application.
 
Register now
You must login or register to view hidden content on this page.