BobStore/custom_rules.xml
Hans-Christoph Steiner 81cbef82b4 finish ant/gradle build for appcompat-v7
Both preferencefragment and appcompat-v7 submodules need the
android-support-v4.jar to be included in their respective libs/ dirs in
order for ant to build those projects.
2014-06-04 23:19:54 -04:00

23 lines
772 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<project name="custom_rules">
<target name="-pre-build">
<echo message="Copying a bunch of files around to make F-Droid and its submodules build" />
<copy tofile="extern/android-support-v4-preferencefragment/libs/android-support-v4.jar"
file="libs/android-support-v4.jar" />
<copy tofile="extern/Support/v7/appcompat/libs/android-support-v4.jar"
file="libs/android-support-v4.jar" />
</target>
<target name="javadoc" description="Generate Javadocs">
<javadoc sourcepath="${source.dir}"
destdir="${out.dir}/javadoc"
packagenames="org.fdroid.*"
windowtitle="${ant.project.name}"
doctitle="${ant.project.name}" />
</target>
</project>