Skip to content

Commit

Permalink
build correction
Browse files Browse the repository at this point in the history
  • Loading branch information
fredgrott committed Sep 24, 2010
1 parent df475a3 commit fa5d62a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
10 changes: 7 additions & 3 deletions alpbuild.xml
Original file line number Diff line number Diff line change
Expand Up @@ -293,9 +293,13 @@
<property name="rulesets" value="androidrules"/>
<property name="today" value="${DSTAMP}"/>

<path id="javadoc.source">
<pathelement path="${source.absolute.dir}"/>
</path>
<!-- In Android for Javadocs to be generated right we
have to include the gen folder to pick up
the R.java for the imports of the R class.-->
<path id="javadoc.source">
<pathelement path="${source.absolute.dir}"/>
<pathelement path="${gen.absolute.dir}"/>
</path>

<!-- When I add javadoc I am assuming that IDE has put
its incremental build result at bin/
Expand Down
10 changes: 7 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -775,9 +775,13 @@
<property name="rulesets" value="androidrules"/>
<property name="today" value="${DSTAMP}"/>

<path id="javadoc.source">
<pathelement path="${source.absolute.dir}"/>
</path>
<!-- In Android for Javadocs to be generated right we
have to include the gen folder to pick up
the R.java for the imports of the R class.-->
<path id="javadoc.source">
<pathelement path="${source.absolute.dir}"/>
<pathelement path="${gen.absolute.dir}"/>
</path>

<!-- When I add javadoc I am assuming that IDE has put
its incremental build result at bin/
Expand Down

0 comments on commit fa5d62a

Please sign in to comment.