Failed to parse altool output: Failed to parse PList data type: /

生来就可爱ヽ(ⅴ<●) 提交于 2021-02-08 12:37:11

问题


I have a Xamarin.Forms application. I am up to date on my VSMac, XCode, Xamarin, Xamarin.Forms, Mac, and everything else that I can think of. I am stumped regarding where to go resolve this issue. It is happening when I attempt to deploy the application to the iOS app store. I have checked my plist file with "plutil -lint" and it comes back as OK. any ideas are greatly appreciated. TIA.


回答1:


Increase the build number in the info.plist file




回答2:


I had the same issue, increasing the build number fixed it.

To do this in your Info.plist increase the CFBundleVersion like so:

<key>CFBundleVersion</key>
<string>2</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>

You can keep the CFBundleShortVersionString the same, e.g., I kept mine at 1.0 as it was the first version of this app.




回答3:


I had this issue today. I tried changing the build number and it didn't work for me. I closed Visual Studio for Mac and deleted the obj/bin folders and restarted Visual Studio and did a clean and rebuild and it didn't work. Finally I closed Visual Studio and restarted my machine and opened Visual Studio (I didn't delete the obj/bin folders this time) and tried to publish to the App store and it worked! So I guess try restarting your machine if you get this error...




回答4:


Had a similar issue when publishing app from "Visual Studio for Mac" version 8.7.9 (build 9). I have tried following suggestions and those are not worked to me.

  • increase the CFBundleVersion
  • Restart the mac

Only thing works for me as suggested by @pinedax, is upload app using Apple's Transporter app. (apps.apple.com/us/app/transporter/id1450874784?mt=12)



来源:https://stackoverflow.com/questions/60440832/failed-to-parse-altool-output-failed-to-parse-plist-data-type

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!