Reputation: 7985
I have download 3 system images for Android Oreo as shown in picture here in SDK manager
But when I check in Choose System Image from AVD manager in Android Studio, those installed all images are not shown (only Google APIs system image is shown) .
I checked in all of the following tabs snapshot here
Upvotes: 1
Views: 5527
Reputation: 7985
I found the answer.
To change system image for particular AVD :-
sdk folder > system-images > android-X [mine was google_apis and google_apis_playstore]
If folder is empty then first you need to download system image from sdk manager
image.sysdir.1=system-images\android-26\<paste-system-image-name-here>\x86\
image.sysdir.1=system-images\android-26\google_apis\x86\
is replaced by
image.sysdir.1=system-images\android-26\google_apis_playstore\x86\
Now emulator running API 26 is running correctly.
Upvotes: 3
Reputation: 1242
Edit the AVD and select a system image by clicking on the Choose...
button in the third row
Upvotes: 0