How to install my apk in the Genymotion emulator

2

I would like to know how to install my apk in the emulator Genymotion , either by:

  • Command line using the adb command
  • Drag and Drop method (If it exists)

Operating system : Windows 10

Thank you in advance for any help.

    
asked by Pedro Miguel Pimienta Morales 16.04.2016 в 00:22
source

2 answers

3

By command line you can do it as you would on any device through the Android Debug Bridge:

> adb install mi_aplicacion.apk

Another option is how to comment by means of "Drag & Drop", add the .apk in the emulator Genymotion and automatically install them, important to mention that this option works if your .apk is signed.

    
answered by 16.04.2016 / 00:56
source
0

If you develop Android Studio when you open your Emulated Device, it recognizes it and automatically installs it.

Another option is to compile the apk from the toolbar and once you have generated the apk drag the emulator, it will recognize the apk and give you the option to install it, you must activate " unknown sources " in the device to install it.

    
answered by 16.04.2016 в 00:40