Home > Enterprise >  Visual Studio for Mac, Xamarin iOS Publishing Failed popup
Visual Studio for Mac, Xamarin iOS Publishing Failed popup

Time:08-02

I am trying to publish a Xamarin iOS app from Visual Studio for Mac. (ver. 17.0.2). Xcode ver. 13.4.1 . I have the app set up correctly (I think) in App Store Connect. The app is just for iPhone and iPad.

I am getting the following results. It is a picture in VS for Mac so I cannot copy and paste the text into an xml file.

enter image description here

Can anyone tell me what the issue is with my Publish and how to fix it?

CodePudding user response:

The error looks like an authentication error.

Did you try the same credentials you are using to push your app in https://appleid.apple.com/ ?

If they are still valid, you might just need to sign out and back into XCode / Visual studio for Mac with you valid apple identifier.

CodePudding user response:

You can try to increase the CFBundleVersion(build number) in your Info.plist like below and try to publish again.

    <key>CFBundleVersion</key>
    <string>2.0</string>
  • Related