[ACCEPTED]-Pod init & Pod install Failure - iOS Xcode beta 14.0-cocoapods

Accepted answer
Score: 11

I changed the Project Format from Xcode 1 14.0 to Xcode 13.0 and it worked for me.

Score: 1

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

Score: 1

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

Score: 0
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

Score: 0

It worked for me for xcode 14 beta.

sudo xcode-select -switch /Applications/Xcode-beta.app/Contents/Developer

0

More Related questions