Is there a Java 7 to Java 6 converter?

前端 未结 1 415
你的背包
你的背包 2021-01-12 01:04

Android SDK requirements state that either JDK 5 or JDK 6 is required.

However, I have a Java class library written in Java 7 and I would like to use it for my Andro

相关标签:
1条回答
  • 2021-01-12 01:47

    Do you have the source for the JAR? If so, you can use the javac -target parameter set to either 5 or 6 to generate either Java 5 or 6 class files. See this page.

    0 讨论(0)
提交回复
热议问题