| LEFT | RIGHT |
| 1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
| 2 <project name="Adblock Plus Library Tests" default="help"> | 2 <project name="Adblock Plus Library Tests" default="help"> |
| 3 | 3 |
| 4 <!-- The local.properties file is created and updated by the 'android' tool. | 4 <!-- The local.properties file is created and updated by the 'android' tool. |
| 5 It contains the path to the SDK. It should *NOT* be checked into | 5 It contains the path to the SDK. It should *NOT* be checked into |
| 6 Version Control Systems. --> | 6 Version Control Systems. --> |
| 7 <property file="local.properties" /> | 7 <property file="local.properties" /> |
| 8 | 8 |
| 9 <!-- The ant.properties file can be created by you. It is only edited by the | 9 <!-- The ant.properties file can be created by you. It is only edited by the |
| 10 'android' tool to add properties to it. | 10 'android' tool to add properties to it. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 Properties related to the SDK location or the project target should | 22 Properties related to the SDK location or the project target should |
| 23 be updated using the 'android' tool with the 'update' action. | 23 be updated using the 'android' tool with the 'update' action. |
| 24 | 24 |
| 25 This file is an integral part of the build system for your | 25 This file is an integral part of the build system for your |
| 26 application and should be checked into Version Control Systems. | 26 application and should be checked into Version Control Systems. |
| 27 | 27 |
| 28 --> | 28 --> |
| 29 <property file="ant.properties" /> | 29 <property file="ant.properties" /> |
| 30 | 30 |
| 31 <!-- if sdk.dir was not set from one of the property file, then | 31 <!-- if sdk.dir was not set from one of the property files, then |
| 32 get it from the ANDROID_HOME env var. | 32 get it from the ANDROID_HOME env var. |
| 33 This must be done before we load project.properties since | 33 This must be done before we load project.properties since |
| 34 the proguard config can use sdk.dir --> | 34 the proguard config can use sdk.dir --> |
| 35 <property environment="env" /> | 35 <property environment="env" /> |
| 36 <condition property="sdk.dir" value="${env.ANDROID_HOME}"> | 36 <condition property="sdk.dir" value="${env.ANDROID_HOME}"> |
| 37 <isset property="env.ANDROID_HOME" /> | 37 <isset property="env.ANDROID_HOME" /> |
| 38 </condition> | 38 </condition> |
| 39 | 39 |
| 40 <!-- The project.properties file is created and updated by the 'android' | 40 <!-- The project.properties file is created and updated by the 'android' |
| 41 tool, as well as ADT. | 41 tool, as well as ADT. |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 *********************** | 83 *********************** |
| 84 ****** IMPORTANT ****** | 84 ****** IMPORTANT ****** |
| 85 *********************** | 85 *********************** |
| 86 In all cases you must update the value of version-tag below to read 'cu
stom' instead of an integer, | 86 In all cases you must update the value of version-tag below to read 'cu
stom' instead of an integer, |
| 87 in order to avoid having your file be overridden by tools such as "andr
oid update project" | 87 in order to avoid having your file be overridden by tools such as "andr
oid update project" |
| 88 --> | 88 --> |
| 89 <!-- version-tag: 1 --> | 89 <!-- version-tag: 1 --> |
| 90 <import file="${sdk.dir}/tools/ant/build.xml" /> | 90 <import file="${sdk.dir}/tools/ant/build.xml" /> |
| 91 | 91 |
| 92 </project> | 92 </project> |
| LEFT | RIGHT |