There is no library apk. It's not meant to be in the apk of the main application. it's meant to be merged into the apk of the main application as if the source code and resources came from the main application source folders. Android Library Project are purely handled at compile time.
This also means that there's no apk installed on the device, which means your manifest should not contain a uses-library node for this library (it may contain them for other libraries just as google maps). That's the reason the doc is completely silent about it: you don't need it. In fact, this is why your install fails. The system will look for a *system* library named after your compile-time library. Of course it will fail finding it and will refuse to install your application. Xav On Mon, Sep 6, 2010 at 8:01 PM, Ian Pilcher <[email protected]> wrote: > I am trying to create a library project, following the directions at > http://developer.android.com/guide/developing/eclipse-adt.html#libraryProject. > I've got things working up to the point of building the application > that depends on the library, but installing the APK on the emulator > always fails, because the shared library is not there. (The > documentation indicates that the ADT would include the library in the > APK of the dependant application, but this is clearly not happening.) > > BTW, I'm using the package name of my library project in the > application's "uses library" tag. Is this correct? The documentation > is completely silent on this subject. > > I've been banging my head against this for two days now, and I can't > help wondering if anyone has gotten a library project to actually > work. > > Any ideas appreciated. Thanks! > > -- > 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 > -- Xavier Ducrohet Android SDK Tech Lead Google Inc. Please do not send me questions directly. Thanks! -- 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

