2

私は libgdx プロジェクトのセットアップに従いました。プロジェクトを Eclipse にインポートしたときに、これらのエラーが発生し、修正を探してもうまくいきませんでした。

The type java.lang.Object cannot be resolved. It is indirectly referenced from required                 .class files    MainActivity.java   /Spellcast-android/src/en/fred/spellcast    line 1  Java Problem
The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files    RobovmLauncher.java /Spellcast-robovm/src/en/fred/spellcast line 1  Java Problem
The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project    Spellcast-robovm        Unknown Java Problem
The type com.google.gwt.core.client.EntryPoint cannot be resolved. It is indirectly referenced from required .class files   GwtLauncher.java    /Spellcast-html/src/en/fred/spellcast/client    line 8  Java Problem
The project was not built since its build path is incomplete. Cannot find the class file for com.google.gwt.core.client.EntryPoint. Fix the build path then try building this project   Spellcast-html      Unknown Java Problem
The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project    Spellcast-android       Unknown Java Problem

私が欠けているものを誰かが知っていますか?

4

1 に答える 1

7

これらを試してみてください。

プロジェクトを右クリックし、[プロパティ] に移動します。プロパティウィンドウで:

  • Android を選択し、Android のバージョンがチェックされていることを確認します (開発者ツールをダウンロードしていないバージョンの Android 用にセットアップされる前にプロジェクトをインポートしたので、これを行うまでコンパイルされませんでした)。
  • [Java ビルド パス] を選択し、[注文とエクスポート] タブを選択します。すべてがチェックされていることを確認してください。
  • Java Compiler を選択し、Java 1.6 でコンパイルしていることを確認します。
于 2013-10-09T10:41:02.577 に答える