forked from labexp/osmtracker-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom_rules.xml
27 lines (22 loc) · 837 Bytes
/
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
<?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>