错误:“模块‘myApp’”是什么意思?在偏移 1646”处有验证错误 2733意思是
我收到以下错误:
模块“myApp”有验证错误 2733,偏移量 1646
,这是我的代码:
public class Midlet extends net.rim.device.api.ui.UiApplication{
public static void main(String[] argv) {
new Midlet().startApp();
}
public void startApp() {
System.out.println("tada!");
}
public void pauseApp() {
System.out.println("PauseApp ...zzzz...");
}
public void destroyApp(boolean unconditional) {
System.out.println("destroyed: " + unconditional);
}
public void notifyDestroyed() {
System.exit(0);
}
public void platformRequest(String s) {
net.rim.blackberry.api.browser.Browser.getDefaultSession().displayPage(s);
}
}
我的导入“LWUIT”、“BlackberryPort”和“LWUIT4IO”。
它构建时没有错误,当我尝试启动应用程序时出现错误。
这个错误是什么意思?
I get the following error:
Module 'myApp' has verification error
2733 at offset 1646
and this is my code:
public class Midlet extends net.rim.device.api.ui.UiApplication{
public static void main(String[] argv) {
new Midlet().startApp();
}
public void startApp() {
System.out.println("tada!");
}
public void pauseApp() {
System.out.println("PauseApp ...zzzz...");
}
public void destroyApp(boolean unconditional) {
System.out.println("destroyed: " + unconditional);
}
public void notifyDestroyed() {
System.exit(0);
}
public void platformRequest(String s) {
net.rim.blackberry.api.browser.Browser.getDefaultSession().displayPage(s);
}
}
My Imports "LWUIT", "BlackberryPort" and "LWUIT4IO".
It builds without errors, I get the error when I try to start up the app.
What does this error mean?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您签署了您的应用程序吗?浏览器集成需要应用程序签名。
另请参阅 LWUIT 博客 解释验证错误。
Have you signed your app? Browser integration requires app signing.
Also take a look at the LWUIT blog explains the verification errors.