This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<target name="compile.jar" description="Making jar lib"> | |
<javac | |
failonerror="true" | |
destdir="temp/java_classes" | |
classpath="${fre.lib}:${android.lib}" | |
source="1.6" target="1.6" | |
includeantruntime="false" | |
bootclasspath="${java_rt.lib}"> | |
<src path="${java.classes}"/> | |
</javac> | |
<jar basedir="temp/java_classes" destfile="temp/ane/android/notifExtLib.jar"/> | |
</target> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment