Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Certainly there's a problem generating android javadoc from Eclipse. I've found a workaround using <strong>maven</strong> and the javadoc plugin with the following configuration (<code>pom.xml</code>):</p> <pre><code>&lt;project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"&gt; &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt; &lt;groupId&gt;group&lt;/groupId&gt; &lt;artifactId&gt;artifact&lt;/artifactId&gt; &lt;version&gt;0.0.5-SNAPSHOT&lt;/version&gt; &lt;build&gt; &lt;sourceDirectory&gt;src&lt;/sourceDirectory&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-javadoc-plugin&lt;/artifactId&gt; &lt;version&gt;2.6.1&lt;/version&gt; &lt;configuration&gt; &lt;links&gt; &lt;link&gt;file:/opt/android-sdk/docs/reference/&lt;/link&gt; &lt;/links&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; &lt;dependencies&gt; &lt;dependency&gt; &lt;groupId&gt;android&lt;/groupId&gt; &lt;artifactId&gt;android&lt;/artifactId&gt; &lt;version&gt;1.5&lt;/version&gt; &lt;scope&gt;provided&lt;/scope&gt; &lt;/dependency&gt; &lt;/dependencies&gt; &lt;/project&gt; </code></pre> <p>adapt your android sdk directory (<code>/opt/android-sdk/</code> in the example). Android libs should also be available in your local maven repository, you may use <a href="http://sites.google.com/a/codtech.com/android/android-tools#TOC-android-mvn-install" rel="nofollow noreferrer">android-mvn-install</a> script to install them.</p> <p>Once this <code>pom.xml</code> is in your project root directory you will be able to <em>Run As -> Maven build ...</em> and configure a <strong>javadoc:javadoc</strong> goal (provided that eclipse has m2eclipse plugin installed). By default output will be in <code>target</code> directory.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload