/documentation/tutorial/MusicFileBrowser/MusicFileBrowser_Tutorial1/build.xml

http://eyes-free.googlecode.com/ · XML · 61 lines · 17 code · 6 blank · 38 comment · 0 complexity · ee4a3a49034efd8f7fe1c21ed2639a56 MD5 · raw file

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