I'm having a problem where my emulator cannot start and I get this message "waiting for device to come online". Try to quit the emulator but cannot quit until some time. This keeps happening to me with the same emulator. Any idea how to solve this? Thank you.
Asked
Active
Viewed 1,994 times
1 Answers
0
Already answered in "waiting for target device to come online" in Android Studio 2.3
locate lib64 folder.Since i am running ubuntu 64 bit. In my case, its located under ~/Android/Sdk/emulator/lib64.
In terminal, Navigate to the ~/Android/Sdk/emulator/lib64 folder ,then run the following commands:
// Double Check to see if these are available
$ sudo apt-get install lib64stdc++6:i386
$ sudo apt-get install mesa-utils
// then move the libstdc++ file inside the folder libstdc++.bak
$ mv libstdc++/ libstdc++.bak
// And execute below command
$ ln -s /usr/lib64/libstdc++.so.6 libstdc++

Neha Raj
- 547
- 5
- 5