/shell/build.xml
XML | 55 lines | 16 code | 6 blank | 33 comment | 0 complexity | a135d7053228f9de26dd3d344dc563a4 MD5 | raw file
1<?xml version="1.0" encoding="UTF-8"?> 2<project name=".MarvinShell" default="help"> 3 4 <!-- 5 The local.properties file is created and updated by the 'android' tool. It 6 contain the path to the SDK. It should *NOT* be checked in in Version 7 Control Systems. 8 --> 9 <property file="local.properties" /> 10 11 <!-- 12 The build.properties file can be created by you and is never touched by the 13 'android' tool. This is the place to change some of the default property 14 values used by the Ant rules. Here are some properties you may want to 15 change/update: application-package the name of your application package as 16 defined in the manifest. Used by the 'uninstall' rule. source-folder the 17 name of the source folder. Default is 'src'. out-folder the name of the 18 output folder. Default is 'bin'. Properties related to the SDK location or 19 the project target should be updated using the 'android' tool with the 20 'update' action. This file is an integral part of the build system for your 21 application and should be checked in in Version Control Systems. 22 --> 23 <property file="build.properties" /> 24 25 <!-- 26 The default.properties file is created and updated by the 'android' tool, as 27 well as ADT. This file is an integral part of the build system for your 28 application and should be checked in in Version Control Systems. 29 --> 30 <property file="default.properties" /> 31 32 <!-- 33 Custom Android task to deal with the project target, and import the proper 34 rules. This requires ant 1.6.0 or above. 35 --> 36 <path id="android.antlibs"> 37 <pathelement path="${sdk-location}/tools/lib/anttasks.jar" /> 38 <pathelement path="${sdk-location}/tools/lib/sdklib.jar" /> 39 <pathelement path="${sdk-location}/tools/lib/androidprefs.jar" /> 40 <pathelement path="${sdk-location}/tools/lib/apkbuilder.jar" /> 41 <pathelement path="${sdk-location}/tools/lib/jarutils.jar" /> 42 </path> 43 44 <taskdef name="setup" classname="com.android.ant.SetupTask" 45 classpathref="android.antlibs" /> 46 47 <!-- 48 Execute the Android Setup task that will setup some properties specific to 49 the target, and import the rules files. To customize the rules, copy/paste 50 them below the task, and disable import by setting the import attribute to 51 false: <setup import="false" /> This will ensure that the properties are 52 setup correctly but that your customized targets are used. 53 --> 54 <setup /> 55</project>