[android-developers] Add a third-party to the emulator ?

2010-10-21 Thread Ferro Francesco
Hi everybody, I'm delevelopping a litle application that use that facebook library http://restfb.com/ it's a .jar that i have added in my project. i have added that line too in the manifest: uses-library android:name=com.restfb / It build everything ok, but the apk fail to install..

Re: [android-developers] Add a third-party to the emulator ?

2010-10-21 Thread TreKing
On Sat, Oct 16, 2010 at 7:18 AM, Ferro Francesco ferro.france...@gmail.comwrote: Is there any solution to that? The uses-library tag is for using libraries that already exist on the device, like the Google Maps api. If you want to use a third party Jar in your project, you add it to your

Re: [android-developers] Add a third-party to the emulator ?

2010-10-21 Thread Marcin Orlowski
On 16 October 2010 14:18, Ferro Francesco ferro.france...@gmail.com wrote: it's a .jar that i have added in my project. [...] i have added that line too in the manifest: uses-library android:name=com.restfb / this is NOT a shared library and it does not exists on your device, so error you get

Re: [android-developers] Add a third-party to the emulator ?

2010-10-21 Thread Mark Murphy
On Sat, Oct 16, 2010 at 8:18 AM, Ferro Francesco ferro.france...@gmail.com wrote: i have added that line too in the manifest: uses-library android:name=com.restfb / Do not do this. Just put the JAR in your project's libs/ directory. If you are using Eclipse, also add it to your build path. --