我正在尝试将我的应用程序提交到Windows Phone 8应用商店,但失败,出现以下错误:
1016: A file registered in the app manifest is missing: pl-PL/Microsoft.Advertising.Mobile.resources.dll. Use a different one and then try again
1016: A file registered in the app manifest is missing: it-IT/Microsoft.Advertising.Mobile.resources.dll. Use a different one and then try again
1016: A file registered in the app manifest is missing: ko-KR/Microsoft.Advertising.Mobile.resources.dll. Use a different one and then try again
1016: A file registered in the app manifest is missing: fr-FR/Microsoft.Advertising.Mobile.resources.dll. Use a different one and then try again
1016: A file registered in the app manifest is missing: zh-TW/Microsoft.Advertising.Mobile.resources.dll. Use a different one and then try again
1016: A file registered in the app manifest is missing: ja-JP/Microsoft.Advertising.Mobile.resources.dll. Use a different one and then try again
1016: A file registered in the app manifest is missing: es-ES/Microsoft.Advertising.Mobile.resources.dll. Use a different one and then try again
1016: A file registered in the app manifest is missing: pt-PT/Microsoft.Advertising.Mobile.resources.dll. Use a different one and then try again
1016: A file registered in the app manifest is missing: el-GR/Microsoft.Advertising.Mobile.resources.dll. Use a different one and then try again如果我打开xap并手动从我的AppManifest.xaml中删除以下行:
<AssemblyPart Source="cs-CZ/Microsoft.Advertising.Mobile.resources.dll" />
<AssemblyPart Source="de-DE/Microsoft.Advertising.Mobile.resources.dll" />
<AssemblyPart Source="el-GR/Microsoft.Advertising.Mobile.resources.dll" />
<AssemblyPart Source="es-ES/Microsoft.Advertising.Mobile.resources.dll" />
<AssemblyPart Source="fr-FR/Microsoft.Advertising.Mobile.resources.dll" />
<AssemblyPart Source="it-IT/Microsoft.Advertising.Mobile.resources.dll" />
<AssemblyPart Source="ja-JP/Microsoft.Advertising.Mobile.resources.dll" />
<AssemblyPart Source="ko-KR/Microsoft.Advertising.Mobile.resources.dll" />
<AssemblyPart Source="pl-PL/Microsoft.Advertising.Mobile.resources.dll" />
<AssemblyPart Source="pt-PT/Microsoft.Advertising.Mobile.resources.dll" />
<AssemblyPart Source="ru-RU/Microsoft.Advertising.Mobile.resources.dll" />
<AssemblyPart Source="zh-CN/Microsoft.Advertising.Mobile.resources.dll" />
<AssemblyPart Source="zh-TW/Microsoft.Advertising.Mobile.resources.dll" />提交后,我得到:
We weren't able to save your info. Try again. Error code: 0x80040803还有别的人有这个问题吗?
谢谢!
发布于 2012-12-30 01:20:38
我收到了类似的错误消息。我采用了另一种方法:我没有编辑清单文件,而是在XAP存档中添加了缺少的DLL。
亚历克斯。
发布于 2013-01-24 20:32:56
您需要确保您拥有最新版本的ad sdk。我认为它是7.1版而不是6.1版。
几个小时前,当我试图上传我的xap时,我也收到了类似的警告。
原来在wp8中有针对Microsoft.Expression.Interactions和System.Windows.Interactivity的新版本。将引用更改为最新版本后,提交过程中没有抛出任何错误。
顺便说一句,与其等待xap文件上传,一种更快的测试方法是启动Store test Kit --> Automated Tests。
希望这能有所帮助!
https://stackoverflow.com/questions/13449614
复制相似问题