github.com/olivere/camlistore@v0.0.0-20140121221811-1b7ac2da0199/clients/android/build.xml (about)

     1  <?xml version="1.0" encoding="UTF-8"?>
     2  <project name="CamliActivity" default="help">
     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 in in Version
     6           Control Systems. -->
     7      <property file="local.properties" />
     8  
     9      <!-- The build.properties file can be created by you and is never touched
    10           by the 'android' tool. This is the place to change some of the default property values
    11           used by the Ant rules.
    12           Here are some properties you may want to change/update:
    13  
    14           application.package
    15               the name of your application package as defined in the manifest. Used by the
    16               'uninstall' rule.
    17           source.dir
    18               the name of the source directory. Default is 'src'.
    19           out.dir
    20               the name of the output directory. Default is 'bin'.
    21  
    22           Properties related to the SDK location or the project target should be updated
    23            using the 'android' tool with the 'update' action.
    24  
    25           This file is an integral part of the build system for your application and
    26           should be checked in in Version Control Systems.
    27  
    28           -->
    29      <property file="build.properties" />
    30  
    31      <!-- The default.properties file is created and updated by the 'android' tool, as well
    32           as ADT.
    33           This file is an integral part of the build system for your application and
    34           should be checked in in Version Control Systems. -->
    35      <property file="default.properties" />
    36  
    37      <!--
    38          Import per project custom build rules if present at the root of the project.
    39          This is the place to put custom intermediary targets such as:
    40              -pre-build
    41              -pre-compile
    42              -post-compile (This is typically used for code obfuscation.
    43                             Compiled code location: ${out.classes.absolute.dir}
    44                             If this is not done in place, override ${out.dex.input.absolute.dir})
    45              -post-package
    46              -post-build
    47              -pre-clean
    48      -->
    49      <import file="custom_rules.xml" optional="true" />
    50  
    51      <!-- Import the actual build file.
    52  
    53           To customize existing targets, there are two options:
    54           - Customize only one target:
    55               - copy/paste the target into this file, *before* the
    56                 <import> task.
    57               - customize it to your needs.
    58           - Customize the whole content of build.xml
    59               - copy/paste the content of the rules files (minus the top node)
    60                 into this file, replacing the <import> task.
    61               - customize to your needs.
    62  
    63           ***********************
    64           ****** IMPORTANT ******
    65           ***********************
    66           In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
    67           in order to avoid having your file be overridden by tools such as "android update project"
    68      -->
    69      <!-- version-tag: 1 -->
    70      <import file="${sdk.dir}/tools/ant/build.xml" />
    71  
    72  </project>