我正在尝试使用android bootstrap:https://github.com/donnfelker/android-bootstrap。
我克隆了code.but,所以我尝试了app目录中的下一个命令:
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
}
)发布于 2013-05-07 19:15:16
符号entryPoints已重命名为injects。
请参阅此处的讨论:https://github.com/donnfelker/android-bootstrap/issues/44
https://stackoverflow.com/questions/16401938
复制相似问题