-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcustom_rules.xml
36 lines (28 loc) · 1.07 KB
/
custom_rules.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<project name="ApkUpdaterClient">
<!-- The constants source filename. -->
<property name="file.build" value="TODO" />
<!-- Apk repository directory. -->
<property name="apk.repo.dir" value=".apk_repo" />
<!-- The path to the git executable. -->
<property name="git.path" value="/usr/bin/git" />
<!-- Determine if .git is available in the running directory. -->
<available file=".git" type="dir" property="git.present" />
<!-- Deploy debug APK. -->
<target name="-package-jar" unless="build.is.mode.release">
<buildnumber/>
<copy file="${out.dir}/classes.jar" tofile="${out.dir}/${ant.project.name}.jar" />
</target>
<!-- Run before -build to update the build file. -->
<target name="-pre-build">
</target>
<target name="-pre-compile">
</target>
<!-- Run after -compile to do any cleanup. -->
<target name="-post-compile">
</target>
<!-- Run after -build. -->
<target name="-post-build">
<antcall target="-package-jar" />
</target>
</project>