Running android Apps on Windows | DIMI’s place

DIMI's place

My thoughts on different things

19 December 2019

Running android Apps on Windows

Problem

I listen to a dozen of audiobooks using my Smart Audiobook Player (I’ll call it SAP).

Some of them contain great quotes, which I like to store, for which I use Bookmark feature ( SAP Which allows to navigate through this bookmarks and stores them in .xml format).

Since my phone has limited space - after listening to audiobook I usually copy this quotes folder to PC to a Copy bookmarks folder which I later go through.

However I was not able to find any application on PC that would allow me to open this bookmarks (or any media player that would have bookmariking feature, including VLC, aimp, …)

So last desperate move was to find a way to run Android apps on Windows. And here it is.

OS installation

First of all you would need Android X86 ISO. Download it from Android X86 site. Also you would need VirtualBox.

Installation instructions are perfectly explained here

Normal Boot

Remove ISO from virtual drive.

Select second field (with Debug Mode).

We would need to mount grub as writable and update contents of menu.lst:

sudo mount -o remount,rw /mnt/grub
vi /mnt/grub/menu.lst

add this params to the end of kernel line:

nomodeset xforcevesa

save your editor and restart / or boot into OS.

Copying files between Host and Guest

Ideally I would like to find a way to mount physical drive as SD card, so I can freely copy files over.

tags: VirtualBox - Android