Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

Publishing Failed error message

like image 884
Wallace B. McClure Avatar asked Feb 27 '20 19:02

Wallace B. McClure


4 Answers

Increase the build number in the info.plist file

like image 78
Jeffrey Avatar answered Nov 20 '22 02:11

Jeffrey


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.

like image 33
Iain Smith Avatar answered Nov 20 '22 03:11

Iain Smith


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...

like image 2
Flood Techs Avatar answered Nov 20 '22 03:11

Flood Techs


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)

like image 2
Vidu Avatar answered Nov 20 '22 03:11

Vidu