0

最近我开发了一些应用程序,它是简单的 Weider 6 excersises 浏览器。

我已经使用 JAR 清单中的元素手动创建了 JAD 文件,但是诺基亚发布 QA 团队撤销了我的应用程序,原因如下:

Dear publisher,
While processing your content we found the following MIDlet-attributes are not present in the JAD and JAR manifest files:

Key 'MicroEdition-Profile' is not in the .jad and .jar.
Key 'MicroEdition-Configuration' is not in the .jad and .jar.
Key 'MIDlet-1' is not in the .jad and .jar.
Key 'MIDlet-Name' is not in the .jad and .jar.
Key 'MIDlet-Version' is not in the .jad and .jar.
Key 'MIDlet-Vendor' is not in the .jad and .jar.

真的很奇怪,因为我的清单如下所示:

MIDlet-Version: 1.0.0
MIDlet-Vendor: Michal Kulesza
MIDlet-Jar-URL: Weider6.jar
MicroEdition-Configuration: CLDC-1.0
MicroEdition-Profile: MIDP-2.1
MIDlet-1: Weider6,/1.png,me.kulesza.WeiderExcercises
MIDlet-Name: Weider6

和 JAD 文件几乎一样:

MIDlet-Jar-Size: 199784
Sealed: true
MIDlet-Version: 1.0.0
MIDlet-Vendor: Michal Kulesza
MIDlet-Jar-URL: Weider6.jar
MicroEdition-Configuration: CLDC-1.0
MicroEdition-Profile: MIDP-2.1
MIDlet-1: Weider6,/1.png,me.kulesza.WeiderExcercises
MIDlet-Name: Weider6

你们中有人遇到过这样的问题吗?我做错了什么还是他们的错?

4

1 回答 1

-1

您可以使用我的 JAD-Checker jadcheck.appspot.com在线检查 JAD 文件

您可能还应该包括以下条目: MIDlet-Icon MIDlet-Description 但是这些缺失的条目不能成为您收到错误报告的原因。

在我看来,上传过程中出现了问题。例如,您可以轻松执行错误:选择要上传的文件,但未确认它以开始实际上传。发生在我最后保存整个表格时,文件没有上传,系统使用了我的旧文件,并且QA重新检查了我的旧版本。现在,在我提交给 QA 之前,我总是下载我上传的内容,以检查系统是否真的有我的新文件。

有一个额外的“验证”按钮。它应该捕获像这样的错误。

于 2013-03-10T00:15:06.390 回答