How do i test an UE android .apk file on Android Studio AVD

I am trying to test my UE apps on Android Studio AVD.
I have my device emulator running a Samsung Galaxy S6. I
used command prompt to install the .apk. (abd install ).

After a while i get this [install_failed_no_matching_abis] -
Here is one explanation android - INSTALL_FAILED_NO_MATCHING_ABIS when install apk - Stack Overflow

INSTALL_FAILED_NO_MATCHING_ABIS is when you are trying to install an app that has native libraries and it doesn’t have a native library for your cpu architecture. For example if you compiled an app for armv7 and are trying to install it on an emulator that uses the Intel architecture instead it will not work.

Any Ideeas?