Android Activity under Eclipse/ADT with Project Dependencies (Failed resolving XY)
问题 I tried to keep a game project quite platform independent so I split it up into three projects from low-level to top android specific level like that: engine, game, android game. The involved classes/interfaces in the error are those: (low level) engine project defines this interface: com.myteam.engine.IGame (mid level) platform independent game project defines those classes: com.myteam.myproject.Game com.myteam.myproject.MyProject (derived from com.myteam.myproject.Game) (top level) android