1

アプリを 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

他の誰かがこの問題を抱えていましたか?

ありがとう!

4

2 に答える 2

2

同様のエラーメッセージがありました。別のアプローチを採用しました。マニフェスト ファイルを編集する代わりに、不足している DLL を XAP アーカイブに追加しました。

アレックス。

于 2012-12-29T17:20:37.773 に答える
2

広告 SDK が最新バージョンであることを確認する必要があります。v6.1ではなくv7.1だと思います。

数時間前に xap をアップロードしようとしたときに、同様の警告が表示されました。

  • 1016: アプリ マニフェストに登録されているファイルが見つかりません: zh-Hant/Microsoft.Expression.Interactions.resources.dll。別のものを使用してから、もう一度お試しください

  • 1016: アプリ マニフェストに登録されているファイルが見つかりません: zh-Hans/System.Windows.Interactivity.resources.dll。別のものを使用してから、もう一度お試しください

Microsoft.Expression.Interactions と System.Windows.Interactivity の新しいバージョンが wp8 にあることが判明しました。参照を最新バージョンに変更した後、送信中にエラーはスローされませんでした。

ところで、xap ファイルがアップロードされるのを待つよりも、これをテストするより迅速な方法は、Store Test Kit --> Automated Tests を起動することです。

お役に立てれば!

于 2013-01-24T12:32:56.097 に答える