I am using Ubuntu 16.04.4. I have an apk installed in my system and I want to install that apk file in the emulator(or AVD). I dragged and dropped the apk file to the emulator and I got the following error. Click here for the Error image
Asked
Active
Viewed 124 times
1 Answers
1
You can use adb
for that, just make sure you have in your PATH and type adb install <path>/your.apk
Make sure your emulator is running with adb devices
Refer to this: https://developer.android.com/studio/command-line/adb.html

Krzysztof Kubicki
- 677
- 8
- 21
-
I am getting the error : Failure [INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113] – Darshil Apr 17 '18 at 16:57
-
Read here then : https://stackoverflow.com/questions/24572052/install-failed-no-matching-abis-when-install-apk – Krzysztof Kubicki Apr 18 '18 at 07:14