Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use Genymotion to launch an android app on PC?

I created an android project with the eclipse ADT from the android-bundle, and generated the apk. I downloaded and installed Genymotion with the integrated Oracle Virtualbox on my computer running Windows XP. How to run my application with Genymotion ?

like image 339
pheromix Avatar asked Feb 14 '23 05:02

pheromix


2 Answers

If you have a genymotion emulator running ADB will detect it and give you the option to install it directly on it from eclipse. Another option is to install it through terminal by doing:

adb install myapk.apk

Before using adb from terminal remember to set up ANDROID_HOME, and add ANDROID_HOME/platform-tools to the path. Hope this helps

like image 195
John Nilsen Avatar answered Feb 15 '23 18:02

John Nilsen


if you have APK than just Drag and Drop to Genymotion emulator by default it store in /sdcard/download(its toast location where store file) go to there and manually install your APK you can also put any file not only APK :)

This is online plugin for eclipse http://plugins.genymotion.com/eclipse

after install it you can use as native emulator.You can find icon in eclipse menu start emulator from it and run project

like image 28
MilapTank Avatar answered Feb 15 '23 19:02

MilapTank