Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Seems the problem was caused by a dependency not being resolved.</p> <p>At first Maven did not even report this missing dependency, until I started removing things from my pom which I had added in an attempt to resolve this issue.</p> <p>Now, what explains that the dependency didn't get auto-resolved, is the fact that there is no such artifact on the central maven repository.</p> <p>As such, I added the following repository :</p> <pre><code>&lt;repositories&gt; &lt;!-- For developing with Android ROME Feed Reader --&gt; &lt;repository&gt; &lt;id&gt;android-rome-feed-reader-repository&lt;/id&gt; &lt;name&gt;Android ROME Feed Reader Repository&lt;/name&gt; &lt;url&gt;https://android-rome-feed-reader.googlecode.com/svn/maven2/releases&lt;/url&gt; &lt;/repository&gt; &lt;/repositories&gt; </code></pre> <p>Resulting in that 'hidden' dependency being resolved.</p> <p>This dependency seems to be needed by the </p> <pre><code> &lt;!-- Needed for androidannotations REST interface--&gt; &lt;dependency&gt; &lt;groupId&gt;org.springframework.android&lt;/groupId&gt; &lt;artifactId&gt;spring-android-rest-template&lt;/artifactId&gt; &lt;version&gt;${spring-android-version}&lt;/version&gt; &lt;/dependency&gt; </code></pre> <p><a href="http://static.springsource.org/spring-android/docs/1.0.x/reference/htmlsingle/#d4e68" rel="nofollow">Spring docs</a> report that this 'hidden dependency' of which we're speaking is needed for RSS and Atom feed support by the rest-template.</p> <p>What made this even weirder is that the initial activity annotated by AA got created and resolved nicely. As long as I didn't refer to a generated class, e.g. for navigation, then it did compile and run. From the moment I tried to use a class_ in code however, it went down this path.</p> <p>Hope this helps !</p>
 

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