Reputation: 4857
I have installed Genymotion
in my osx
(I am using Android Studio
). The Genymotion
icon appears in the ide
toolbar but I can't run my app with this emulator, since it is not shown in my AVD manager
. How can I make this work ?
Edit :@pyus13, I can't find any bottom tab button, here's a screen
Upvotes: 1
Views: 3267
Reputation: 2081
To summarize for others:
terminal
and restart adb with the commands adb kill-server
then adb start-server
adb devices
and make sure the emulator shows upUpvotes: 4