Keep in mind that there are also Java version dependencies and library dependencies. I don't know what Java versions may correspond to what Android versions, but you can't eg, compile with a Java 6 targeted javac and expect to run on a Java 5 JDK. And in some cases you can run into trouble if you compile against a later version of something like one of the org.apache interfaces and then try to run on earlier. (In fact, with a few of the org.apache interfaces the problem can go both ways.)
On Oct 19, 7:52 am, Tom Gibara <[email protected]> wrote: > Yes. Temporarily changing the "Project Build Target" in the project's > android properties (assuming you're using eclipse) should highlight any > unexpected Java source incompatibilities. > > Tom. -- 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

