Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Annotations: Annotated class Xyz_ not finding it's original ("cannot find symbol class Xyz")

I use the latest Android Annotations 2.6 and IntelliJ IDEA. Sometimes I always keep having problem with the annotations / classpath / compilation order. Seems to occur irregularly. I had the project compile earlier today, then changed a res/layout-xml file later on, then I try to build the project and get an error.

But there are no syntax errors or anything in the xml nor java source files.

Problem is that the annotated class doesn't find it's original class, getting

cannot find symbol class Intro

error.

My project structure:

/src/
    /app/activity/Intro
    ...
/gen-annotation-processed/
    /app/activity/Intro_
    ...
/gen
    ...

My IDEA annotation preferences:

Processor path:

/path/to/project/ext-libs/androidannotations-2.6.jar

Processor FQ Name:

com.googlecode.androidannotations.AndroidAnnotationProcessor

Source folders in the project's Android IDEA module:

gen
gen-annotation-processed
src

enter image description here

Error login in IDEA when building the project (via IDEA, no ant or maven):

enter image description here

(Class "Intro" exists in the src folder and has no errors in it.)

Update: I have it working now, although not sure what/where I changed something after playing around with settings back and forth. It might actually just be an issue with IDEA and not actually android-annotations related, not sure yet.

What usually seems to work is: do a Rebuild (might throw compile errors, ignore). Then do a Build (not a complete rebuild). For some reasons, the multiple compilation runs don't work properly when doing a rebuild, need to do the rebuild+build combination.

like image 451
Mathias Conradt Avatar asked Sep 14 '12 02:09

Mathias Conradt


2 Answers

Above mentioned problem was an issue with the new build system that was introduced with IDEA 12, in combination with an issue of AA 2.x, which is meanwhile fixed in AA 3.

See:

  • http://github.com/excilys/androidannotations/issues/423
  • http://github.com/excilys/androidannotations/issues/471

(Anyhow, as @outlying mentioned, maven is a good idea in general to make it independent of the IDE at all.)

like image 155
Mathias Conradt Avatar answered Nov 09 '22 08:11

Mathias Conradt


Have you tried this link http://www.ashokgelal.com/2012/12/setting-up-intellij-idea-12-with-maven-actionbarsherlock-roboelectric-androidannotations/ ?

It works like a charm for me, I was able to setup few projects with AA on IDEA

like image 37
outlying Avatar answered Nov 09 '22 09:11

outlying