forked from irssiconnectbot/irssiconnectbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
264 lines (219 loc) · 11.3 KB
/
build.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<?xml version="1.0" encoding="UTF-8"?>
<project name="ConnectBot" default="help">
<!-- The local.properties file is created and updated by the 'android' tool.
It contains the path to the SDK. It should *NOT* be checked into
Version Control Systems. -->
<property file="local.properties" />
<!-- The ant.properties file can be created by you. It is only edited by the
'android' tool to add properties to it.
This is the place to change some Ant specific build properties.
Here are some properties you may want to change/update:
source.dir
The name of the source directory. Default is 'src'.
out.dir
The name of the output directory. Default is 'bin'.
For other overridable properties, look at the beginning of the rules
files in the SDK, at tools/ant/build.xml
Properties related to the SDK location or the project target should
be updated using the 'android' tool with the 'update' action.
This file is an integral part of the build system for your
application and should be checked into Version Control Systems.
-->
<property file="ant.properties" />
<!-- The project.properties file is created and updated by the 'android'
tool, as well as ADT.
This contains project specific properties such as project target, and library
dependencies. Lower level build properties are stored in ant.properties
(or in .classpath for Eclipse projects).
This file is an integral part of the build system for your
application and should be checked into Version Control Systems. -->
<loadproperties srcFile="project.properties" />
<!-- quick check on sdk.dir -->
<fail
message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through an env var"
unless="sdk.dir"
/>
<!-- Custom Android task to deal with the project target, and import the
proper rules.
This requires ant 1.6.0 or above. -->
<path id="android.antlibs">
<pathelement path="${sdk.dir}/tools/lib/anttasks.jar" />
<pathelement path="${sdk.dir}/tools/lib/sdklib.jar" />
<pathelement path="${sdk.dir}/tools/lib/androidprefs.jar" />
</path>
<!--
Import per project custom build rules if present at the root of the project.
This is the place to put custom intermediary targets such as:
-pre-build
-pre-compile
-post-compile (This is typically used for code obfuscation.
Compiled code location: ${out.classes.absolute.dir}
If this is not done in place, override ${out.dex.input.absolute.dir})
-post-package
-post-build
-pre-clean
-->
<import file="custom_rules.xml" optional="true" />
<!-- Import the actual build file.
To customize existing targets, there are two options:
- Customize only one target:
- copy/paste the target into this file, *before* the
<import> task.
- customize it to your needs.
- Customize the whole content of build.xml
- copy/paste the content of the rules files (minus the top node)
into this file, replacing the <import> task.
- customize to your needs.
***********************
****** IMPORTANT ******
***********************
In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
in order to avoid having your file be overridden by tools such as "android update project"
-->
<!-- version-tag: custom -->
<import file="${sdk.dir}/tools/ant/build.xml" />
<!-- Begin custom ConnectBot stuff -->
<property name="proguard.out.dir" value="${out.dir}/proguard.out"/>
<property name="out.dex.input.absolute.dir" value="${proguard.out.dir}"/>
<!-- Output directory for .po files. -->
<property name="locale.dir" value="locale" />
<!-- Default args to pass to a2po for .po generation. -->
<property name="a2po.args" value="--groups strings --template fortune/fortune.pot --layout 'po/fortune/fortune-%(locale)s.po'"/>
<!-- File names for launchpad translations. -->
<property name="launchpad.export.file" value="launchpad-export.tar.gz"/>
<property name="launchpad.import.file" value="launchpad-import.tar.gz"/>
<target name="check-proguard">
<available file="tools/proguard.jar" property="have.proguard"/>
</target>
<target name="proguard" depends="check-proguard">
<fail unless="have.proguard">You requested ProGuard, but you don't have the JAR available! See README</fail>
</target>
<target name="-pre-build" depends="create-out-dir, link-out-dir, update-version"/>
<target name="-post-compile" depends="proguard-execute"/>
<target name="remove-out-symlink">
<symlink action="delete" link="${proguard.out.dir}" failonerror="false"/>
</target>
<target name="check-out-exists" depends="remove-out-symlink">
<available file="${proguard.out.dir}" property="proguard.out.is.dir"/>
</target>
<target name="delete-out-dir" depends="check-out-exists" if="proguard.out.is.dir">
<delete dir="${proguard.out.dir}"/>
</target>
<target name="create-out-dir" depends="delete-out-dir" if="have.proguard">
<mkdir dir="${proguard.out.dir}"/>
</target>
<target name="link-out-dir" depends="delete-out-dir" unless="have.proguard">
<symlink link="${proguard.out.dir}" resource="${out.classes.dir}"/>
</target>
<target name="proguard-execute" if="have.proguard">
<mkdir dir="${out.dex.input.absolute.dir}"/>
<taskdef resource="proguard/ant/task.properties"
classpath="tools/proguard.jar" />
<proguard configuration="proguard.flags" printusage="${out.dir}/proguard.usage">
<injar path="${out.classes.absolute.dir}"/>
<outjar path="${proguard.out.dir}"/>
<libraryjar path="${android.jar}:libs/bugsense-trace-1-1.jar"/>
</proguard>
</target>
<target name="help">
<!-- displays starts at col 13
|13 80| -->
<echo>Android Ant Build. Available targets:</echo>
<echo> help: Displays this help.</echo>
<echo> clean: Removes output files created by other targets.</echo>
<echo> compile: Compiles project's .java files into .class files.</echo>
<echo> debug: Builds the application and signs it with a debug key.</echo>
<echo> release: Builds the application. The generated apk file must be</echo>
<echo> signed before it is published.</echo>
<echo> install: Installs/reinstalls the debug package onto a running</echo>
<echo> emulator or device.</echo>
<echo> If the application was previously installed, the</echo>
<echo> signatures must match.</echo>
<echo> uninstall: Uninstalls the application from a running emulator or</echo>
<echo> device.</echo>
<echo> proguard: use before build statements like "debug" and "release"</echo>
<echo> to enable proguard dead code removal. NOTE: You must</echo>
<echo> have tools/proguard.jar available. See the README.</echo>
</target>
<target name="update-version" description="Updates the Version.java file with current Git revision">
<echo>Updating resources with Git revision and build date...</echo>
<tstamp>
<format property="build.date" pattern="yyyy.MM.dd" />
</tstamp>
<!-- Get the version name from the android manifest, will en up in property ${manifest.android:versionName} -->
<xpath input="AndroidManifest.xml" expression="/manifest/@android:versionName"
output="manifest.version.name" />
<!-- checkout notrans.xml so we can ignore it in our index -->
<exec executable="git">
<arg line="checkout res/values/notrans.xml"/>
</exec>
<!-- find out the description of the current Git commit -->
<exec executable="git" outputproperty="git.revision">
<arg line="describe --match 'v[0-9]*' --dirty"/>
</exec>
<replaceregexp file="${resource.absolute.dir}/values/notrans.xml" encoding="utf8" match='(\x3Cstring name="msg_version">)[^\x3C]*(\x3C/string>)'
replace='\1${ant.project.name} ${manifest.version.name} (${git.revision} ${build.date})\2' />
<echo>Updated "msg_version" to: ${ant.project.name} ${manifest.version.name} (${git.revision} ${build.date})</echo>
</target>
<target name="clean"
description="Clean up the result of the build process">
<delete dir="${out.absolute.dir}"/>
<delete dir="${gen.absolute.dir}"/>
<!-- if we know about a tested project or libraries, we clean them too. This
will only work if the target 'all' was called first -->
<if condition="${project.is.test}">
<then>
<property name="tested.project.absolute.dir" location="${tested.project.dir}" />
<subant failonerror="true">
<fileset dir="${tested.project.absolute.dir}" includes="build.xml" />
<target name="all" />
<target name="clean" />
</subant>
</then>
</if>
</target>
<target name="tests" depends="install">
<echo>Building and installing tests...</echo>
<exec executable="ant" failonerror="true">
<arg value="-f" />
<arg value="tests/build.xml" />
<arg value="install"/>
</exec>
<echo>Running test cases...</echo>
<exec executable="${adb}">
<arg value="shell" />
<arg value="am" />
<arg value="instrument" />
<arg value="-w" />
<arg value="${application-package}.tests/android.test.InstrumentationTestRunner" />
<redirector outputproperty="test.results"/>
</exec>
<fail message="Some unit tests failed:${line.separator}${test.results}">
<condition>
<contains string="${test.results}" substring="FAILURES"/>
</condition>
</fail>
</target>
<!-- Translations come from launchpad.net and are placed in the
locale/ subdirectory. -->
<target name="translations-import">
<untar src="${launchpad.export.file}" dest="${locale.dir}" compression="gzip"/>
<exec executable="a2po" failonerror="true">
<arg value="import"/>
<arg line="${a2po.args}"/>
</exec>
</target>
<!-- Translations are to be uploaded to launchpad.net as a tar ball
created from the locale/ subdirectory. -->
<target name="translations-export">
<exec executable="a2po" failonerror="true">
<arg value="export"/>
<arg line="${a2po.args}"/>
</exec>
<tar destfile="${launchpad.import.file}"
compression="gzip"
basedir="${locale.dir}"
includes="**/*.pot **/*.po" />
</target>
<!-- End custom ConnectBot stuff -->
</project>