Answer: No suitable Android AVD system images are available. You may need to install these using SDK Manager. For example, to install the system image for Android API level 27 with Google Play Store and x86 architecture, you can use the following command in SDK Manager:
sdkmanager "system-images;android-27;google_apis_playstore;x86"
This command will download and install the required system image for creating an AVD (Android Virtual Device) with the specified configuration.
The sdkmanager
is a command-line tool provided by the Android SDK (Software Development Kit) that allows you to install, update, and manage various components of the SDK, including system images, platform tools, and build tools.
When you encounter the error message “no suitable Android AVD system images are available,” it means that the necessary system image for the desired Android version, target architecture, and additional features (such as Google Play Store) is not currently installed on your development machine. In such cases, you need to use SDK Manager to download and install the required system image.
Once the system image is installed, you can create an AVD using this image to test and simulate the selected Android configuration on an emulated device.