> Many thanks ... this sounds like a good plan. However, there are quite > a few > of them, ten in total.
10 JARs? Which AWS service are you using? There has to be some Java client for it less pudgy than 10 JARs' worth. > Is there a way of converting the jars directly > rather than finding all the source and recompiling that, or should I > bite the bullet? Well, you tried converting the JARs directly, which is what gave you your error. The point of recompiling from source is to avoid converting the JARs directly. Case in point: the stock Beanshell JAR (www.beanshell.org) does not work on Android, because (I think) it was compiled with Java 1.4.2, and we need Java 1.5+. However, recompiling Beanshell to create a fresh JAR, with a current Java compiler, worked just fine. -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to Android Development_ Version 2.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 -~----------~----~----~----~------~----~------~--~---

