/[projects]/android/TrainInfo/buildclient.xml
ViewVC logotype

Annotation of /android/TrainInfo/buildclient.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1643 - (hide annotations) (download) (as text)
Mon Nov 28 20:38:03 2011 UTC (12 years, 6 months ago) by torben
Original Path: android/TrainInfo/build.xml
File MIME type: text/xml
File size: 4023 byte(s)
don't load local.properties file
1 torben 1119 <?xml version="1.0" encoding="UTF-8"?>
2 torben 1126 <project name="TrainInfo" default="help">
3 torben 1119
4 torben 1639 <!-- 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 torben 1643 <!-- <loadproperties srcFile="local.properties" /> -->
8 torben 1119
9 torben 1639 <!-- 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 torben 1119 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 torben 1639 For other overridable properties, look at the beginning of the rules
20     files in the SDK, at tools/ant/build.xml
21    
22 torben 1119 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 torben 1639 <property file="ant.properties" />
30 torben 1119
31 torben 1639 <!-- The project.properties file is created and updated by the 'android'
32 torben 1119 tool, as well as ADT.
33 torben 1639
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 torben 1119 This file is an integral part of the build system for your
39     application and should be checked into Version Control Systems. -->
40 torben 1639 <loadproperties srcFile="project.properties" />
41 torben 1119
42 torben 1639 <!-- quick check on sdk.dir -->
43     <fail
44     message="sdk.dir is missing. Make sure to generate local.properties using 'android update project'"
45     unless="sdk.dir"
46     />
47 torben 1119
48    
49 torben 1639 <target name="-pre-build">
50 torben 1119
51 torben 1639 <echo message="--TrainInfoCommon--" />
52     <ant dir="../TrainInfoCommon/" antfile="../TrainInfoCommon/build.xml" inheritAll="false" />
53     <copy todir="libs">
54     <fileset dir="../TrainInfoCommon">
55     <include name="*.jar"/>
56     </fileset>
57     </copy>
58     <echo message="--TrainInfoCommon END--" />
59 torben 1119
60 torben 1639 <echo message="--GenericJavaUtils--" />
61     <ant dir="../GenericJavaUtils/" antfile="../GenericJavaUtils/build.xml" inheritAll="false" />
62     <copy file="../GenericJavaUtils/GenericJavaUtils.jar" todir="libs" />
63     <echo message="--GenericJavaUtils END--" />
64 torben 1119
65 torben 1639 </target>
66 torben 1119
67 torben 1359
68 torben 1639 <!-- extension targets. Uncomment the ones where you want to do custom work
69     in between standard targets -->
70 torben 1119 <!--
71     <target name="-pre-build">
72     </target>
73     <target name="-pre-compile">
74     </target>
75    
76 torben 1639 /* This is typically used for code obfuscation.
77     Compiled code location: ${out.classes.absolute.dir}
78     If this is not done in place, override ${out.dex.input.absolute.dir} */
79 torben 1119 <target name="-post-compile">
80     </target>
81     -->
82    
83 torben 1639 <!-- Import the actual build file.
84 torben 1119
85     To customize existing targets, there are two options:
86     - Customize only one target:
87     - copy/paste the target into this file, *before* the
88 torben 1639 <import> task.
89 torben 1119 - customize it to your needs.
90 torben 1639 - Customize the whole content of build.xml
91 torben 1119 - copy/paste the content of the rules files (minus the top node)
92 torben 1639 into this file, replacing the <import> task.
93 torben 1119 - customize to your needs.
94 torben 1639
95     ***********************
96     ****** IMPORTANT ******
97     ***********************
98     In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
99     in order to avoid having your file be overridden by tools such as "android update project"
100 torben 1119 -->
101 torben 1639 <!-- version-tag: 1 -->
102     <import file="${sdk.dir}/tools/ant/build.xml" />
103 torben 1119
104     </project>

  ViewVC Help
Powered by ViewVC 1.1.20