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

Annotation of /android/AndroidUtils/build.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1820 - (hide annotations) (download) (as text)
Thu Jul 26 13:38:03 2012 UTC (11 years, 10 months ago) by torben
File MIME type: text/xml
File size: 3810 byte(s)
another ant thingy
1 torben 1641 <?xml version="1.0" encoding="UTF-8"?>
2     <project name="AndroidUtils" 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 into
6     Version Control Systems. -->
7     <loadproperties srcFile="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 torben 1820 <property name="jar.libs.dir" value="libs" />
32    
33 torben 1641 <!-- The project.properties file is created and updated by the 'android'
34     tool, as well as ADT.
35    
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     This file is an integral part of the build system for your
41     application and should be checked into Version Control Systems. -->
42     <loadproperties srcFile="project.properties" />
43    
44     <!-- 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    
50     <target name="-pre-build">
51     <echo message="--GenericJavaUtils--" />
52     <ant dir="../GenericJavaUtils/" antfile="../GenericJavaUtils/build.xml" inheritAll="false" />
53     <copy file="../GenericJavaUtils/GenericJavaUtils.jar" todir="libs" />
54     <echo message="--GenericJavaUtils END--" />
55     </target>
56    
57     <target name="-post-compile">
58     <delete file="libs/GenericJavaUtils.jar" />
59     </target>
60    
61    
62    
63     <!-- extension targets. Uncomment the ones where you want to do custom work
64     in between standard targets -->
65     <!--
66     <target name="-pre-build">
67     </target>
68     <target name="-pre-compile">
69     </target>
70    
71     /* This is typically used for code obfuscation.
72     Compiled code location: ${out.classes.absolute.dir}
73     If this is not done in place, override ${out.dex.input.absolute.dir} */
74     <target name="-post-compile">
75     </target>
76     -->
77    
78     <!-- Import the actual build file.
79    
80     To customize existing targets, there are two options:
81     - Customize only one target:
82     - copy/paste the target into this file, *before* the
83     <import> task.
84     - customize it to your needs.
85     - Customize the whole content of build.xml
86     - copy/paste the content of the rules files (minus the top node)
87     into this file, replacing the <import> task.
88     - customize to your needs.
89    
90     ***********************
91     ****** IMPORTANT ******
92     ***********************
93     In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
94     in order to avoid having your file be overridden by tools such as "android update project"
95     -->
96     <!-- version-tag: 1 -->
97     <import file="${sdk.dir}/tools/ant/build.xml" />
98    
99     </project>

  ViewVC Help
Powered by ViewVC 1.1.20