forked from labexp/osmtracker-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom_rules.xml
More file actions
25 lines (20 loc) · 820 Bytes
/
custom_rules.xml
File metadata and controls
25 lines (20 loc) · 820 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="OSMTracker-custom" default="help">
<property name="lint.binary" value="${sdk.dir}/tools/lint" />
<target name="lint" >
<exec executable="${lint.binary}" failonerror="yes" >
<arg value="--exitcode" />
<arg value="-Wall" />
<arg value="." />
</exec>
</target>
<target name="-pre-build" depends="lint">
<echo message="Copying 'nb' resources to 'no' (See pull request #6)" />
<copy todir="${resource.absolute.dir}/values-no" overwrite="true">
<fileset dir="${resource.absolute.dir}/values-nb" />
</copy>
<copy todir="${resource.absolute.dir}/xml-no" overwrite="true">
<fileset dir="${resource.absolute.dir}/xml-nb" />
</copy>
</target>
</project>