0

Android ブートストラップを使用しようとしています: https://github.com/donnfelker/android-bootstrap

コードのクローンを作成しますが、アプリディレクトリから次のコマンドを試すと、次のようになります。

mvn clean package

しかし、何かが間違っています。

    [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project android-bootstrap: Compilation failure: Compilation failure:
[ERROR] \Users\keepcleargas\android-bootstrap\app\src\main\java\com\donnfelker\android\bootstrap\BootstrapModule.java:[33,8] Error: can not find symbol
[ERROR] \Users\keepcleargas\android-bootstrap\app\src\main\java\com\donnfelker\android\bootstrap\BootstrapModule.java:[33,22] The error: <none> initialization procedure is illegal.

シンボル「entryPoints」を認識できません。

@Module
(
        complete = false,

        entryPoints= {
                BootstrapApplication.class,
                BootstrapAuthenticatorActivity.class,
                CarouselActivity.class,
                BootstrapTimerActivity.class,
                CheckInsListFragment.class,
                NewsActivity.class,
                NewsListFragment.class,
                UserActivity.class,
                UserListFragment.class,
                TimerService.class
        }

)
4

1 に答える 1

1

シンボルのentryPoints名前が に変更されましたinjects

ここでの議論を参照してください: https://github.com/donnfelker/android-bootstrap/issues/44

于 2013-05-07T11:15:15.767 に答える