/shell/build.xml

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