Fixed ant build files for Android project.

This commit is contained in:
akwizgran
2012-12-05 21:31:13 +00:00
parent b995a2dce8
commit 5204e0b907
3 changed files with 21 additions and 0 deletions

4
briar-android/.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
bin
gen
res
local.properties

View File

@@ -9,6 +9,9 @@
# 'source.dir' for the location of your java source folder and
# 'out.dir' for the location of your output folder.
source.dir=src:../briar-core/src
external.libs.dir=../briar-core/libs
# You can also use it define how the release builds are signed by declaring
# the following properties:
# 'key.store' for the location of your keystore and

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="Briar" default="help">
<target name="-pre-compile">
<path id="project.all.jars.path">
<path path="${toString:project.all.jars.path}"/>
<fileset dir="${jar.libs.dir}">
<include name="*.jar"/>
</fileset>
<fileset dir="${external.libs.dir}">
<include name="*.jar"/>
</fileset>
</path>
</target>
</project>