If you happen to all know something about these errors beneath your assist could be drastically appreciated. If you happen to want any extra details about this be at liberty to remark. I am fairly misplaced at this level. I have been archiving my Flutter app with Xcode Cloud and am getting these 4 errors (Btw it archives and builds usually by myself machine):
couldn't discover included file 'Pods/Goal Help Information/Pods-Runner/Pods-Runner.launch.xcconfig' in search paths
couldn't discover included file 'Generated.xcconfig' in search paths
Unable to load contents of file listing: '/Goal Help Information/Pods-Runner/Pods-Runner-frameworks-Launch-output-files.xcfilelist'
Unable to load contents of file listing: '/Goal Help Information/Pods-Runner/Pods-Runner-frameworks-Launch-input-files.xcfilelist'
I am additionally getting these two warnings (Idk in the event that they’re associated):
-
Run script construct part '[CP] Embed Pods Frameworks' will probably be run throughout each construct as a result of it doesn't specify any outputs. To handle this warning, both add output dependencies to the script part, or configure it to run in each construct by unchecking "Primarily based on dependency evaluation" within the script part.
-
Unable to learn contents of XCFileList '/Goal Help Information/Pods-Runner/Pods-Runner-frameworks-Launch-output-files.xcfilelist'
I am utilizing the defualt workflow for Xcode Cloud and am utilizing the next as my put up clone script:
#!/bin/sh
# The default execution listing of this script is the ci_scripts listing.
cd $CI_WORKSPACE # change working listing to the foundation of your cloned repo.
# Set up Flutter utilizing git.
git clone https://github.com/flutter/flutter.git --depth 1 -b secure $HOME/flutter
export PATH="$PATH:$HOME/flutter/bin"
# Set up Flutter artifacts for iOS (--ios), or macOS (--macos) platforms.
flutter precache --ios
# Set up Flutter dependencies.
flutter pub get
flutter construct ios
# Set up CocoaPods utilizing Homebrew.
HOMEBREW_NO_AUTO_UPDATE=1 # disable homebrew's automated updates.
brew set up cocoapods
# Set up CocoaPods dependencies.
cd ios
pod set up # run `pod set up` within the `ios` listing.
exit 0
I’ve tried making adjustments to the post-clone script and the venture itself, however nothing has labored to this point.