/[projects]/android/Side9/build.xml
ViewVC logotype

Annotation of /android/Side9/build.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2035 - (hide annotations) (download) (as text)
Thu Jul 25 07:01:17 2013 UTC (10 years, 10 months ago) by torben
File MIME type: text/xml
File size: 3684 byte(s)
make side9 work with ant again
1 torben 1124 <?xml version="1.0" encoding="UTF-8"?>
2 torben 1125 <project name="Side9" default="help">
3 torben 1124
4 torben 1645 <!-- 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     <!--
8     <loadproperties srcFile="local.properties" />
9     -->
10 torben 1124
11 torben 1645 <!-- The ant.properties file can be created by you. It is only edited by the
12     'android' tool to add properties to it.
13     This is the place to change some Ant specific build properties.
14 torben 1124 Here are some properties you may want to change/update:
15    
16     source.dir
17     The name of the source directory. Default is 'src'.
18     out.dir
19     The name of the output directory. Default is 'bin'.
20    
21 torben 1645 For other overridable properties, look at the beginning of the rules
22     files in the SDK, at tools/ant/build.xml
23    
24 torben 1124 Properties related to the SDK location or the project target should
25     be updated using the 'android' tool with the 'update' action.
26    
27     This file is an integral part of the build system for your
28     application and should be checked into Version Control Systems.
29    
30     -->
31 torben 1645 <property file="ant.properties" />
32 torben 1124
33 torben 1645 <!-- The project.properties file is created and updated by the 'android'
34 torben 1124 tool, as well as ADT.
35 torben 1645
36     This contains project specific properties such as project target, and library
37     dependencies. Lower level build properties are stored in ant.properties
38     (or in .classpath for Eclipse projects).
39    
40 torben 1124 This file is an integral part of the build system for your
41     application and should be checked into Version Control Systems. -->
42 torben 1645 <loadproperties srcFile="project.properties" />
43 torben 1124
44 torben 1645 <!-- quick check on sdk.dir -->
45     <fail
46     message="sdk.dir is missing. Make sure to generate local.properties using 'android update project'"
47     unless="sdk.dir"
48     />
49 torben 1124
50 torben 1361 <target name="-pre-build">
51 torben 2035 <!-- <echo message="- -GenericJavaUtils- -" />
52 torben 1361 <ant dir="../GenericJavaUtils/" antfile="../GenericJavaUtils/build.xml" inheritAll="false" />
53     <copy file="../GenericJavaUtils/GenericJavaUtils.jar" todir="libs" />
54 torben 2035 <echo message="- -GenericJavaUtils END- -" />
55     -->
56 torben 1361 </target>
57    
58 torben 1645
59    
60     <!-- extension targets. Uncomment the ones where you want to do custom work
61     in between standard targets -->
62 torben 1124 <!--
63     <target name="-pre-build">
64     </target>
65     <target name="-pre-compile">
66     </target>
67    
68 torben 1645 /* This is typically used for code obfuscation.
69     Compiled code location: ${out.classes.absolute.dir}
70     If this is not done in place, override ${out.dex.input.absolute.dir} */
71 torben 1124 <target name="-post-compile">
72     </target>
73     -->
74    
75 torben 1645 <!-- Import the actual build file.
76 torben 1124
77     To customize existing targets, there are two options:
78     - Customize only one target:
79     - copy/paste the target into this file, *before* the
80 torben 1645 <import> task.
81 torben 1124 - customize it to your needs.
82 torben 1645 - Customize the whole content of build.xml
83 torben 1124 - copy/paste the content of the rules files (minus the top node)
84 torben 1645 into this file, replacing the <import> task.
85 torben 1124 - customize to your needs.
86 torben 1645
87     ***********************
88     ****** IMPORTANT ******
89     ***********************
90     In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
91     in order to avoid having your file be overridden by tools such as "android update project"
92 torben 1124 -->
93 torben 1645 <!-- version-tag: 1 -->
94     <import file="${sdk.dir}/tools/ant/build.xml" />
95 torben 1124
96     </project>

  ViewVC Help
Powered by ViewVC 1.1.20