Browse Source

lib/build.xml: Also set javac source to java6

"javac: target release 6 conflicts with default source release 1.7"
error will be emitted if a java7 compiler is used and target is set to 6
but not source.
pull/90/head
Florian Schmaus 11 years ago
parent
commit
93e997d442
  1. 1
      lib/build.xml

1
lib/build.xml

@ -20,6 +20,7 @@
srcdir="src/" srcdir="src/"
destdir="build/" destdir="build/"
bootclasspath="${sdk-location}/platforms/${android.version}/android.jar" bootclasspath="${sdk-location}/platforms/${android.version}/android.jar"
source="6"
target="6" target="6"
/> />
<jar <jar

Loading…
Cancel
Save