[android-beginners] Re: Including 3rd party jars in Android App

2009-10-29 Thread Ian Guedes Maia
Put your .jar on PROJECT/libs. This folder is recognized by eclipse and will be included on the APK. 2009/10/27 sundancebleu sundanceb...@gmail.com: I'm hoping someone can help, when I try including a custom jar file I built in another java project through eclipse (in my build path), I get a

[android-beginners] Re: Including 3rd party jars in Android App

2009-10-29 Thread sundancebleu
Thanks for the reply. I actually tried that, but it still doesn't work. I get the following error (not sure if this helps): 10-29 03:48:46.469: WARN/dalvikvm(721): Unable to resolve superclass of Lcom/roger/framework/util/StringUtils; (480) 10-29 03:48:46.469: WARN/dalvikvm(721): Link of class

[android-beginners] Re: Including 3rd party jars in Android App

2009-10-29 Thread Xavier Ducrohet
Are you sure that your jar file doesn't depend on another jar file? Xav On Wed, Oct 28, 2009 at 9:32 PM, sundancebleu sundanceb...@gmail.com wrote: Thanks for the reply.  I actually tried that, but it still doesn't work.  I get the following error (not sure if this helps): 10-29

[android-beginners] Re: Including 3rd party jars in Android App

2009-10-29 Thread sundancebleu
Ok, I feel like an idiot. The jar file I was including was built by someone else and I was assuming it wasn't dependent on any other jars. It turns out it was, so that was the issue. I just jumped to the worst case scenario instead of considering the simplest. Thanks for all that help

[android-beginners] Re: Including 3rd party jars in Android App

2009-10-28 Thread Xavier Ducrohet
uses-library is for shared library which you cannot add yourself. You should simply have to put the jar file in your project folder and, from Eclipse, do a right click on it from the Package Explorer and choose Add to build path Xav On Tue, Oct 27, 2009 at 5:15 PM, sundancebleu