Tushar
Tushar

Reputation: 5955

application not installing on android simulator

I am trying to run an Android application. When I install the application on the 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!

Upvotes: 3

Views: 10828

Answers (2)

Dan Csharpster
Dan Csharpster

Reputation: 2732

Open a command prompt and go to your platform tools folder

\Eclipse\sdk\platform-tools

There will be adb.exe there. Type

adb logcat

Take a look at the output. If you'd like further help, post the output on here. Thanks!

Upvotes: 4

CommonsWare
CommonsWare

Reputation: 1007474

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

Upvotes: 0

Related Questions