| Xavier Ducrohet | 2e00a07 | 2012-02-24 17:44:27 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| Xavier Ducrohet | 249dc01 | 2012-05-25 16:27:34 -0700 | [diff] [blame] | 2 | <project name="libWithCustomView" default="help"> |
| Xavier Ducrohet | 2e00a07 | 2012-02-24 17:44:27 -0800 | [diff] [blame] | 3 | |
| 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 |
| 6 | Version Control Systems. --> |
| 7 | <property file="local.properties" /> |
| 8 | |
| 9 | <!-- The ant.properties file can be created by you. It is only edited by the |
| 10 | 'android' tool to add properties to it. |
| 11 | This is the place to change some Ant specific build properties. |
| 12 | Here are some properties you may want to change/update: |
| 13 | |
| 14 | source.dir |
| 15 | The name of the source directory. Default is 'src'. |
| 16 | out.dir |
| 17 | The name of the output directory. Default is 'bin'. |
| 18 | |
| 19 | For other overridable properties, look at the beginning of the rules |
| 20 | files in the SDK, at tools/ant/build.xml |
| 21 | |
| 22 | Properties related to the SDK location or the project target should |
| 23 | be updated using the 'android' tool with the 'update' action. |
| 24 | |
| 25 | This file is an integral part of the build system for your |
| 26 | application and should be checked into Version Control Systems. |
| 27 | |
| 28 | --> |
| 29 | <property file="ant.properties" /> |
| 30 | |
| 31 | <!-- The project.properties file is created and updated by the 'android' |
| 32 | tool, as well as ADT. |
| 33 | |
| 34 | This contains project specific properties such as project target, and library |
| 35 | dependencies. Lower level build properties are stored in ant.properties |
| 36 | (or in .classpath for Eclipse projects). |
| 37 | |
| 38 | This file is an integral part of the build system for your |
| 39 | application and should be checked into Version Control Systems. --> |
| 40 | <loadproperties srcFile="project.properties" /> |
| 41 | |
| Xavier Ducrohet | 249dc01 | 2012-05-25 16:27:34 -0700 | [diff] [blame] | 42 | <!-- if sdk.dir was not set from one of the property file, then |
| 43 | get it from the ANDROID_HOME env var. --> |
| 44 | <property environment="env" /> |
| 45 | <condition property="sdk.dir" value="${env.ANDROID_HOME}"> |
| 46 | <isset property="env.ANDROID_HOME" /> |
| 47 | </condition> |
| 48 | |
| Xavier Ducrohet | 2e00a07 | 2012-02-24 17:44:27 -0800 | [diff] [blame] | 49 | <!-- quick check on sdk.dir --> |
| 50 | <fail |
| Xavier Ducrohet | 249dc01 | 2012-05-25 16:27:34 -0700 | [diff] [blame] | 51 | message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable." |
| Xavier Ducrohet | 2e00a07 | 2012-02-24 17:44:27 -0800 | [diff] [blame] | 52 | unless="sdk.dir" |
| 53 | /> |
| 54 | |
| Xavier Ducrohet | 249dc01 | 2012-05-25 16:27:34 -0700 | [diff] [blame] | 55 | <!-- |
| 56 | Import per project custom build rules if present at the root of the project. |
| 57 | This is the place to put custom intermediary targets such as: |
| 58 | -pre-build |
| 59 | -pre-compile |
| 60 | -post-compile (This is typically used for code obfuscation. |
| 61 | Compiled code location: ${out.classes.absolute.dir} |
| 62 | If this is not done in place, override ${out.dex.input.absolute.dir}) |
| 63 | -post-package |
| 64 | -post-build |
| 65 | -pre-clean |
| 66 | --> |
| 67 | <import file="custom_rules.xml" optional="true" /> |
| Xavier Ducrohet | 2e00a07 | 2012-02-24 17:44:27 -0800 | [diff] [blame] | 68 | |
| 69 | <!-- Import the actual build file. |
| 70 | |
| 71 | To customize existing targets, there are two options: |
| 72 | - Customize only one target: |
| 73 | - copy/paste the target into this file, *before* the |
| 74 | <import> task. |
| 75 | - customize it to your needs. |
| 76 | - Customize the whole content of build.xml |
| 77 | - copy/paste the content of the rules files (minus the top node) |
| 78 | into this file, replacing the <import> task. |
| 79 | - customize to your needs. |
| 80 | |
| 81 | *********************** |
| 82 | ****** IMPORTANT ****** |
| 83 | *********************** |
| 84 | In all cases you must update the value of version-tag below to read 'custom' instead of an integer, |
| 85 | in order to avoid having your file be overridden by tools such as "android update project" |
| 86 | --> |
| 87 | <!-- version-tag: 1 --> |
| 88 | <import file="${sdk.dir}/tools/ant/build.xml" /> |
| 89 | |
| 90 | </project> |