Skip to content

Instantly share code, notes, and snippets.

@illuzor
Created December 7, 2013 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save illuzor/7847670 to your computer and use it in GitHub Desktop.
Save illuzor/7847670 to your computer and use it in GitHub Desktop.
<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