Search
lxdream.org :: lxdream/android/build.xml
lxdream 0.9.1
released Jun 29
Download Now
filename android/build.xml
changeset 1239:be3121267597
next1245:01e0020adf88
author nkeynes
date Sat Feb 25 21:30:49 2012 +1000 (12 years ago)
permissions -rw-r--r--
last change Android support WIP
view annotate diff log raw
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <project name="Lxdream" default="help">
     4 <!-- The local.properties file is created and updated by the 'android'
     5      tool.
     6      It contains the path to the SDK. It should *NOT* be checked into
     7      Version Control Systems. -->
     8     <property file="local.properties" />
    10     <!-- The build.properties file can be created by you and is never touched
    11          by the 'android' tool. This is the place to change some of the
    12          default property values used by the Ant rules.
    13          Here are some properties you may want to change/update:
    15          source.dir
    16              The name of the source directory. Default is 'src'.
    17          out.dir
    18              The name of the output directory. Default is 'bin'.
    20          Properties related to the SDK location or the project target should
    21          be updated using the 'android' tool with the 'update' action.
    23          This file is an integral part of the build system for your
    24          application and should be checked into Version Control Systems.
    26          -->
    27     <property file="build.properties" />
    29     <!-- The default.properties file is created and updated by the 'android'
    30          tool, as well as ADT.
    31          This file is an integral part of the build system for your
    32          application and should be checked into Version Control Systems. -->
    33     <property file="default.properties" />
    36     <!-- Required pre-setup import -->
    37     <import file="${sdk.dir}/tools/ant/pre_setup.xml" />
    40 <!-- extension targets. Uncomment the ones where you want to do custom work
    41      in between standard targets -->
    42 <!--
    43     <target name="-pre-build">
    44     </target>
    45     <target name="-pre-compile">
    46     </target>
    48     [This is typically used for code obfuscation.
    49      Compiled code location: ${out.classes.absolute.dir}
    50      If this is not done in place, override ${out.dex.input.absolute.dir}]
    51     <target name="-post-compile">
    52     </target>
    53 -->
    55     <!-- Execute the Android Setup task that will setup some properties
    56          specific to the target, and import the build rules files.
    58          The rules file is imported from
    59             <SDK>/tools/ant/
    60          Depending on the project type it can be either:
    61          - main_rules.xml
    62          - lib_rules.xml
    63          - test_rules.xml
    65          To customize existing targets, there are two options:
    66          - Customize only one target:
    67              - copy/paste the target into this file, *before* the
    68                <setup> task.
    69              - customize it to your needs.
    70          - Customize the whole script.
    71              - copy/paste the content of the rules files (minus the top node)
    72                into this file, *after* the <setup> task
    73              - disable the import of the rules by changing the setup task
    74                below to <setup import="false" />.
    75              - customize to your needs.
    76     -->
    77     <setup />
    79 </project>
.