The application is not installed on the Android simulator

I am trying to run an android application. When I install the application on an Android simulator, it shows this error in the console:

[2011-02-21 16:37:44 - TFLAPPv1] Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY
[2011-02-21 16:37:44 - TFLAPPv1] Please check logcat output for more details.
[2011-02-21 16:37:44 - TFLAPPv1] Launch canceled!
+3
source share
2 answers

Open a command prompt and go to the platform tool folder.

\ Eclipse \ SDK \ platform tools

There will be adb.exe. A type

adb logcat

Take a look at the result. If you need more help, post the output here. Thank!

+4
source

Most likely you are using Google Maps in your application, and you are installing on an AVD emulator that does not have Google APIs.

0
source

Source: https://habr.com/ru/post/1793575/


All Articles