0

我创建了一个钛模块并将其嵌入到钛模块应用程序中,但是每次编译该应用程序时都会给我一个错误:

[INFO] Compiling Javascript Resources ...
[ERROR] Application Installer abnormal process termination. Process exit value was 1
[ERROR] Error(s) compiling generated Java code
[ERROR] C:\DeveloperFolder\TitaniumStudioWorkspace\TestingModuleApp\build\android\gen\testing\module\app\TestingmoduleappApplication.java:42: cannot find symbol
symbol  : class TestingmoduleBootstrap
location: package testing.module
        runtime.addExternalModule("testing.module", testing.module.TestingmoduleBootstrap.class);
                                                                  ^
1 error

有谁知道如何解决这个问题?

4

1 回答 1

0

尝试删除TestingmoduleBootstrap.class然后重新编译:

http://www.coderanch.com/t/402221/java/java/Compiler-Error-find-symbol

并确保您的班级名称没有拼写错误:

http://java.about.com/od/cerrmsg/g/Definition-Cannot-Find-Symbol.htm

于 2012-12-21T18:28:21.860 回答