Reputation: 5955
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
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
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