I am trying to run the Andengine examples in the IntelliJ IDEA. I managed to import all the necessary extensions and the editor window doesn't show any errors anymore, but when I try to run the project and it compiles all of the classes it shows several errors:

/home/mathias/Arbeitsplatz/andenginemultiplayerextension/src/org/anddev/andengine/extension/multiplayer/protocol/server/SocketServerDiscoveryServer.java
  cannot find symbol class IDiscoveryData
/home/mathias/Arbeitsplatz/andenginemultiplayerextension/src/org/anddev/andengine/extension/multiplayer/protocol/server/SocketServer.java
  cannot find symbol class IServerListener
  ... and so on

It seems the library can't find some of its own classes, although they are all there, and there are no errors shown in the editor.

I found this issue on the project page which shows the same errors in eclipse, although I found no description on how to fix it.

I have no custom build settings for this project and all I do is click on the "Run"-Button.

link|improve this question

I have this same problem. Any solutions? – chubbard Jan 8 at 22:15
1  
According to code.google.com/p/andenginemultiplayerextension/issues/…, the code depends on several eclipse-specific compile features. – dasmaze Jan 9 at 16:16
feedback

3 Answers

up vote 1 down vote accepted

there is solution from here: http://youtrack.jetbrains.com/issue/IDEA-79464 :

Same error here with intellij 11.0.2, though a quick patch I found is to set intellij to use Eclipse compiler in the settings/compiler menu (there are several options) and everything seems to compile properly.

link|improve this answer
feedback

Just a solution I found elsewhere - set IntelliJ to use the Eclipse compiler.

link|improve this answer
feedback

Use the Eclipse! I don't think that IntelliJ IDEA is a good Idea ;)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.