Skip to content
Snippets Groups Projects
Commit 5204e0b9 authored by akwizgran's avatar akwizgran
Browse files

Fixed ant build files for Android project.

parent b995a2dc
No related branches found
No related tags found
No related merge requests found
bin
gen
res
local.properties
...@@ -9,6 +9,9 @@ ...@@ -9,6 +9,9 @@
# 'source.dir' for the location of your java source folder and # 'source.dir' for the location of your java source folder and
# 'out.dir' for the location of your output folder. # '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 # You can also use it define how the release builds are signed by declaring
# the following properties: # the following properties:
# 'key.store' for the location of your keystore and # 'key.store' for the location of your keystore and
......
<?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>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment