Browse Source

Merge branch 'master' of https://github.com/erickok/transdroid

pull/148/merge
Eric Kok 11 years ago
parent
commit
1b029162a8
  1. 6
      lib/build.xml

6
lib/build.xml

@ -16,10 +16,16 @@
<target name="transdroid.jar" depends="check-android-exists" > <target name="transdroid.jar" depends="check-android-exists" >
<mkdir dir="build/" /> <mkdir dir="build/" />
<!-- We create java6 bytecode here, because Android build tools <
19.0.0 seem to be unable to handle java7 bytecode and the
f-droid buildserver does use a version < 19.0.0. In the
future the 'source' and 'target' attributes may be removed
from the the javac element. -->
<javac <javac
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