3

I am using

Xcode v12.0.1 Cocoa pod v1.10.0.

This is my pod file

# Uncomment the next line to define a global platform for your project
plugin 'cocoapods-binary'
platform :ios, '8.0'
all_binary!
target 'Food' do
 # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
 use_frameworks!
 # Pods for Food
 
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git'
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Firebase/Database'
pod 'Firebase/Storage'
pod 'Firebase/Messaging', :binary => false
pod 'FirebaseMessaging', :binary => false
pod 'Firebase/DynamicLinks'
pod 'Firebase/RemoteConfig'
pod 'Firebase/Firestore'
pod 'Firebase/Analytics'
pod 'EasyTipView'
pod 'Hero'
pod 'SwiftLint'
pod 'ReachabilitySwift'
pod 'Koloda'
pod 'UIColor+FlatColors'
pod 'SDWebImage'
pod 'Stripe'
pod 'GoogleSignIn'
pod 'Alamofire', '~> 4.7.3'
pod 'JGProgressHUD'
pod 'Fabric'
pod 'Crashlytics'
pod 'DTButtonMenuController'
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
pod 'FBSDKShareKit'
pod 'ActiveLabel', :binary => false
pod 'Intercom', '~> 5.4.1'
pod 'AWSS3'
pod 'GooglePlacesSearchController', :binary => false
pod 'GooglePlaces', :binary => false
pod 'GooglePlacePicker',:binary => false
pod 'GoogleMaps',:binary => false
pod 'AMPopTip'
end

All the dependencies are successfully installed and also Prebuilding process is also completed for all dependencies

enter image description here

enter image description here

Deployment target of my project and pod project is same - enter image description here enter image description here

Build phase: enter image description here

I am getting this error when I am running app on iPhone 7 device.

enter image description here enter image description here

What I tried :

  1. I have removed derived data and cache and restart the Xcode and Mac.
  2. I have also deleted all the pods podlock file, .workspace and then reinstall dependencies.
  3. I have tried #1 and #2 many times.

After doing above points my issue is not resolved.

asked Oct 22, 2020 at 8:47
3
  • does this happening for all real devices? or Just iPhone 7(please mention it's OS details)? Commented Oct 26, 2020 at 6:40
  • Do you have custom .swiftlint.yml? If yes, please try removing the .swiftlint.yml file and follow step 2 from above. Commented Oct 26, 2020 at 6:41
  • Since the iOS Deployment target is: 13.0, it seems you should change platform: ios, '8.0' to the 13.0 Commented Oct 28, 2020 at 12:06

1 Answer 1

1

The pods deployment version maybe could be. In my case when I've updated pods to the suggested target version my app starts to have a lot of warnings and errors.

But you can try with this post answers, it's a similar question.

Xcode 10.2.1 Command PhaseScriptExecution failed with a nonzero exit code

answered Oct 28, 2020 at 17:53
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.