[android-developers] Re: Cannot use third party library

2010-03-22 Thread Streets Of Boston
Note that the Android SDK contains a *sub*set of Sun's JDK (version 1.5). This means that JARs running fine under Sun's JDK do not necessarily run under Android SDK; Android SDK may not contain classes that are available under Sun's JDK and that are needed by these JARs. I've had that same issues

[android-developers] Re: Cannot use third party library

2010-03-21 Thread ColletJb
It seems that I have finally successfully added my lib into the build- path... But I receive this error now : Conversion to Dalvik format failed with error 1 And my project is no longer compiling :( On 21 mar, 13:02, ColletJb collet...@gmail.com wrote: Hi, I'm currently trying to make an

[android-developers] Re: Cannot use third party library

2010-03-21 Thread Streets Of Boston
Big chance that the JAR file needs to use some Java classes that are not part of the Android SDK. In other words, if you would compile the classes in the JAR (instead of just including it), you would have gotten compiler errors. On Mar 21, 9:39 am, ColletJb collet...@gmail.com wrote: It seems

[android-developers] Re: Cannot use third party library

2010-03-21 Thread ColletJb
I've tried HTMLParser and Jericho but I have the same issue... No way to include the jars into the apk... I've switched to Jericho parser and the issue is now that log4j is not found (even if it is included next to jericho's jar into the build path) On 21 mar, 15:16, Streets Of Boston