Right now, no. I can not share the project, but I can share part of my config.
Just add this lines to your config and check, it’s works.
android:
components:
sys-img-x86-android-21
echo no | android create avd --force -n test -t android-21 --abi x86
emulator -avd test -memory 1500 -no-accel -gpu swiftshader -camera-back none -camera-front none -no-boot-anim -no-snapshot-save -no-snapstorage
Also you can use other android API level. I checked with API 24 and it’s works. I think that latest API versions would work, but I didn’t check it.
-no-accel - means that emulator will run without hardware acceleration
https://developer.android.com/studio/run/emulator-commandline
-gpu swiftshader - means that software acceleration turn on
https://developer.android.com/studio/run/emulator-acceleration
Please check and inform me about any problem.