Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android studio AVD manager throwing nothing selected

I am trying to configure AVD on android studio on Centos 7.

I am able to successfully create a project. When trying to create AVD, I am choosing device definition as Nexus 6 size: 5'.96",resolution 1440*2560, 560dpi. Then, in the next setup screen, I choose system image screen which I have downloaded, as MarshMallow, API Level:23, x86. In next setup screen, (verify configuration) when I click the Finish button it showed nothing selected.

Screenshot:

Screenshot

like image 847
Ranjit Avatar asked Nov 14 '16 10:11

Ranjit


People also ask

Why AVD Manager is not working?

SDK Build Tools are not installed If it fails then you may have to install it again. You look at the build tab at the bottom of the screen, it will display the error message and option to install the Build tools. Install it and you should be able to see the AVD Manager. Another way is to go to the SDK Manager.

Is AVD Manager same as Device Manager?

An Android Virtual Device (AVD) is a configuration that defines the characteristics of an Android phone, tablet, Wear OS, Android TV, or Automotive OS device that you want to simulate in the Android Emulator. The Device Manager is an interface you can launch from Android Studio that helps you create and manage AVDs.

Can I delete AVD folder?

If you cannot delete the AVD from the Android Virtual Device Manager with the 'The android virtual device XXX is currently running in an emulator and cannot be deleted' message, go to ~/. android/avd/ directory below your home directory and delete the *. avd and *.


1 Answers

In general: web search for your Linux version and how to add 32-bit libraries. Redhat (and Fedora and Centos), for instance, use a .i686 extension. Doing

sudo yum list lib\*.i686 

outputs a whole bunch of libraries; look for libstdc++.

sudo yum install libstdc++.i686

That will ask you whether to install dependencies. Answer 'y'.

like image 165
Loren Heal Avatar answered Sep 18 '22 12:09

Loren Heal