Flutter app uploading to AppStore Xcode error: Rsync failed

Viewed 399

Whenever I try to Validate App after Archiving it in Xcode I get the following error popup:

Rsync failed

It then shows a 'Show logs.' button but when I select that it opens a folder called 'T' which contains many files and folders.

How can I see the logs that I need to fix this error?

Using Xcode 11.5

1 Answers

Usually the problem with Rsync is with the pods and the build itself. Try to run flutter clean, run pod install inside the ios folder, test your app in a real devidce, build the app and try again.

Related