[ACCEPTED]-Pod init & Pod install Failure - iOS Xcode beta 14.0-cocoapods
Accepted answer
I changed the Project Format from Xcode 1 14.0 to Xcode 13.0 and it worked for me.


This may be the issue:
Smart quotes were detected and ignored in your Podfile.
Try to check your 3 Podfile
in some text editor like vscode, vim or 2 nano and substitute all the quotes with 1 new ones
I was not able to fix the issue in Xcode 4 beta, tried to change the path sudo xcode-select
cocoapods uninstalled and reinstalled
, gem installed, brew
everything 3 but nothing worked.
Then changed the version 2 Xcode beta 14.0 to Xcode 13.4.
After that tried,
sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
then pod deintegrated
pod deintegrate
finally
pod install
then 1 started working...
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings["DEVELOPMENT_TEAM"] = "Your Team ID"
end
end
end
end
0
It worked for me for xcode 14 beta.
sudo xcode-select -switch /Applications/Xcode-beta.app/Contents/Developer
0
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.