skip to Main Content

In my Objective-C MobileApp project, the project was running well in Xcode 14.3. But after upgrading to Xcode 15 beta, I’m getting this issue.

Info.plist Error Unable to process Info.plist at path /Users/macmini2/Library/Developer/Xcode/DerivedData/MobileApp-aqrnzgrjfzndxq/Build/Products/Debug-iphoneos/MobileApp.app/Info.plist

How can I fix this issue?

Here is my CocoaPods Podfile:

platform :ios, '12.0'

target 'MobileApp' do
  use_frameworks!
  pod 'Firebase'
  pod 'Firebase/Messaging'
  pod 'Firebase/Crashlytics'
  pod 'BEMCheckBox'
  pod 'QBImagePickerController'
end

post_install do |installer|
  installer.pods_project.build_configurations.each do |config|
    config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
  end
end

2

Answers


  1. In the project settings under Build Phases, try moving "Run Script" (by clicking and dragging) so it is last. Build Phases Screen Shot

    Login or Signup to reply.
  2. Go to Build Phases and play with run scripts, move some of them to the bottom. In my case, I moved the Firebase script to the bottom and the issue disappeared.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search