0

我正在尝试使用 android bootstrap: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.

无法识别符号“入口点”。

@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 回答