Out of Rain
Out of Rain

Reputation: 170

How to use a different emulator in Android Studio

I have issues with the build in qemu emulator in Android Studio. There are some other Android emulators out there. How to configure Android Studio to use a different emulator? I use leapdroid emulator http://www.leapdroid.com to run apps and games.

Upvotes: 5

Views: 14341

Answers (3)

huisinro
huisinro

Reputation: 1103

Leapdroid is compatible with Android adb, i.e., using the same port numbers starting with 5555, so there is really nothing special to do, pretty much same as what you do with the built-in Android emulator. If you run "adb devices", you will see a device named as "emulator-5554".

Here are the steps:

  1. Launch Leapdroid vm, which contains android 4.4.4 image
  2. Launch Android Studio, and click Android emulator tab, a device named as "Emulator unknown 4.4.4" will show up inside the device list, and you can select it.
  3. You should be able to see the logcat, and debug your Android app, etc.

Make sure that you close all other emulators first, in case there are conflicts.

I've also attached two screenshots for clarifications:

Android Studio connecting to Leapdroid VM Leapdroid vm running

Upvotes: 7

dagope
dagope

Reputation: 96

There are options like:

Genymotion: https://www.genymotion.com/
config with Androi Studio here

Visual Studio Emulator for Android https://www.visualstudio.com/en-us/features/msft-android-emulator-vs.aspx
config with Android Studio here

I hope this help you

Upvotes: 1

Akash Agarwal
Akash Agarwal

Reputation: 2520

Did you try using Genymotion? It is the fastest emulator I've come across.
-Download it from their website for your required system specifications.
-You will also need an account to download the device images.
-Once all that is done, when you simply run the emulator, the device should show up in your ADB choose device window.
-You may also want to use Genymotion plugin for android studio for easy launch of virtual devices.

Upvotes: 0

Related Questions