I tried to install my app into Android L Preview Intel Atom Virtual Device, it failed with error:
INSTALL_FAILED_NO_MATCHING_ABIS
What does
This solution worked for me. Try this, add following lines in your app's build.gradle file
splits { abi { enable true reset() include 'x86', 'armeabi-v7a' universalApk true } }