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

Contents of /android/Side9/build.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1375 - (show annotations) (download) (as text)
Sat Apr 23 09:24:27 2011 UTC (13 years ago) by torben
File MIME type: text/xml
File size: 3596 byte(s)
add path to server build.properties
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project name="Side9" default="help">
3
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" />
9
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:
14
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'.
19
20 Properties related to the SDK location or the project target should
21 be updated using the 'android' tool with the 'update' action.
22
23 This file is an integral part of the build system for your
24 application and should be checked into Version Control Systems.
25
26 -->
27 <property file="/home/app/data/android-release/build.properties" />
28 <property file="build.properties" />
29
30 <!-- The default.properties file is created and updated by the 'android'
31 tool, as well as ADT.
32 This file is an integral part of the build system for your
33 application and should be checked into Version Control Systems. -->
34 <property file="default.properties" />
35
36 <!-- Custom Android task to deal with the project target, and import the
37 proper rules.
38 This requires ant 1.6.0 or above. -->
39 <path id="android.antlibs">
40 <pathelement path="${sdk.dir}/tools/lib/anttasks.jar" />
41 <pathelement path="${sdk.dir}/tools/lib/sdklib.jar" />
42 <pathelement path="${sdk.dir}/tools/lib/androidprefs.jar" />
43 </path>
44
45 <taskdef name="setup"
46 classname="com.android.ant.SetupTask"
47 classpathref="android.antlibs" />
48
49 <!-- extension targets. Uncomment the ones where you want to do custom work
50 in between standard targets -->
51
52 <target name="-pre-build">
53 <echo message="--GenericJavaUtils--" />
54 <ant dir="../GenericJavaUtils/" antfile="../GenericJavaUtils/build.xml" inheritAll="false" />
55 <copy file="../GenericJavaUtils/GenericJavaUtils.jar" todir="libs" />
56 <echo message="--GenericJavaUtils END--" />
57 </target>
58
59 <!--
60 <target name="-pre-build">
61 </target>
62 <target name="-pre-compile">
63 </target>
64
65 [This is typically used for code obfuscation.
66 Compiled code location: ${out.classes.absolute.dir}
67 If this is not done in place, override ${out.dex.input.absolute.dir}]
68 <target name="-post-compile">
69 </target>
70 -->
71
72
73 <!-- Execute the Android Setup task that will setup some properties
74 specific to the target, and import the build rules files.
75
76 The rules file is imported from
77 <SDK>/platforms/<target_platform>/ant/ant_rules_r#.xml
78
79 To customize existing targets, there are two options:
80 - Customize only one target:
81 - copy/paste the target into this file, *before* the
82 <setup> task.
83 - customize it to your needs.
84 - Customize the whole script.
85 - copy/paste the content of the rules files (minus the top node)
86 into this file, *after* the <setup> task
87 - disable the import of the rules by changing the setup task
88 below to <setup import="false" />.
89 - customize to your needs.
90 -->
91 <setup />
92
93 </project>

  ViewVC Help
Powered by ViewVC 1.1.20