On Wed, Aug 15, 2012 at 4:23 PM, Dan Uff <[email protected]> wrote: > I'm getting the below error when I compile and try to run my project in the > simulator:
Most likely, you are running this in the emulator, not a simulator. > [2012-08-15 16:08:31 - LANTA] Installation error: > INSTALL_FAILED_MISSING_SHARED_LIBRARY > > [2012-08-15 16:08:31 - LANTA] Please check logcat output for more details. > > [2012-08-15 16:08:31 - LANTA] Launch canceled! > > Can someone tell me what these errors are and how to fix them? You have a <uses-library> element in your manifest, and the AVD for your emulator does not have that library. For example, if your <uses-library> is for Google Maps, you need to have an AVD set up with the Google APIs. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.0 Available! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

