am e2778775: Merge change 20426 into donut

Merge commit 'e2778775411c3ef8d2d20351963715904135e9ec'

* commit 'e2778775411c3ef8d2d20351963715904135e9ec':
  Improve the comments in build.xml to help people customize their build.
This commit is contained in:
Xavier Ducrohet
2009-08-07 16:56:44 -07:00
committed by Android Git Automerger

View File

@@ -49,13 +49,18 @@
classpathref="android.antlibs"/> classpathref="android.antlibs"/>
<!-- Execute the Android Setup task that will setup some properties specific to the target, <!-- Execute the Android Setup task that will setup some properties specific to the target,
and import the rules files. and import the build rules files.
To customize the rules, copy/paste them below the task, and disable import by setting
the import attribute to false: The rules file is imported from
<setup import="false" /> <SDK>/platforms/<target_platform>/templates/android_rules.xml
To customize some build steps for your project:
- copy the content of the main node <project> from android_rules.xml
- paste it in this build.xml below the <setup /> task.
- disable the import by changing the setup task below to <setup import="false" />
This will ensure that the properties are setup correctly but that your customized This will ensure that the properties are setup correctly but that your customized
targets are used. build steps are used.
--> -->
<setup /> <setup />
</project> </project>