In the pod file these are the following settings in place
platform :ios, '7.0'
pod 'AFNetworking', '~> 2.0'
pod 'TestFlightSDK','~> 3.0'
after i give "pod install" its throwing the error Library not found for -lTestFlight
does it work with the latest version of TestFlightSDK?
pod 'TestFlightSDK', '~> 3.0.2'
Related
Recently I removed Fabric from project and installed Firebase/Crashlytics instead. After that when I try to upload app to AppStore using fastlane or do it using native Xcode tools I faced with such error:
Clang frontend command failed with exit code 70 (use -v to see invocation)
I've tried to clean DerivedData folder, pod deintegrate, pod install but error remains.
List of pods:
pod 'Firebase/Core'
pod 'Firebase/Messaging'
pod 'Firebase/Database'
pod 'Firebase/Auth'
pod 'Firebase/Crashlytics'
pod 'Firebase/Analytics'
pod 'Locksmith'
pod 'CryptoSwift'
pod 'QRCode'
pod 'MessageKit'
pod 'MessageInputBar'
pod 'Alamofire', '~> 5.0.0-beta.3'
pod 'SQLite.swift', '~> 0.12.0'
pod 'ReachabilitySwift'
pod 'Localize-Swift', '~> 2.0'
Version of Xcode - 10.1 (10B61)
Any ideas?
Current version of Firebase require at least Xcode 10.3. Details at https://firebase.google.com/docs/ios/setup
I had the same problem after removing Fabric and Crashlytics from my Podfile (Protobuf error). I simply put both back into my Podfile and the error when away in Xcode and I was able to archive my iOS project. The version of Protobuf went from 3.12.0 to 3.7.0 in my Podfile.lock. Xcode Version 10.1 (10B61) on MacOS 10.14 Mojave.
UPDATE - Protobuf 3.12.0 on Xcode 11.5 (11E608c) on MacOS 10.15.4 seems fine. I was able to remove Fabric and Crashlytics.
Xcode version 11.2.1(11B53)
My pod file is here;
platform :ios, '9.0'
target 'OnlineHeadBall2' do
use_frameworks!
pod 'Bolts'
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
pod 'FBSDKShareKit'
pod 'Adjust'
pod 'Fabric'
pod 'Crashlytics'
pod 'Firebase/Core'
pod 'Firebase/Analytics'
pod 'OneSignal', '>= 2.6.2', '< 3.0'
pod 'Branch', '= 0.29.3'
#core SDK
pod 'AMRSDK', '~> 1.4'
#mediation adapters
pod 'AMRAdapterAdcolony', '~> 4.1'
pod 'AMRAdapterAdmob', '~> 7.51'
pod 'AMRAdapterAdmost', '~> 1.2'
pod 'AMRAdapterFacebook', '~> 5.6'
pod 'AMRAdapterHyprmx', '~> 5.2'
pod 'AMRAdapterIronsource', '~> 6.8'
pod 'AMRAdapterMintegral', '~> 5.8'
pod 'AMRAdapterMytarget', '~> 5.3'
pod 'AMRAdapterQumpara', '~> 1.1'
pod 'AMRAdapterTapjoy', '~> 12.3'
pod 'AMRAdapterTiktok', '~> 2.3'
pod 'AMRAdapterUnity', '~> 3.3'
pod 'AMRAdapterVungle', '~> 6.4'
end
When I try to "Archive" my project, an error occurs;
Use of '#import' when C++ modules are disabled, consider using -fmodules and -fcxx-modules
What can I do for building my project successfully?
Add -fcxx-modules to Build Settings->Other C++ Flags->Debug and Release fields.
I can not find out the error although several efforts have been applied. My pod file is given below.
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
target 'BB’ do
pod 'Alamofire', '3.4.0'
pod 'MBProgressHUD', '~> 0.9.1'
pod 'SwiftyJSON', '~> 2.3.0'
pod 'SDWebImage', '~> 3.7'
pod 'MFSideMenu'
pod 'ZBarSDK', '~> 1.3'
pod 'ObjectMapper', '~> 1.1'
pod 'IQKeyboardManager'
pod 'Firebase/Messaging'
pod 'Firebase', '>= 2.5.0'
pod 'SkyFloatingLabelTextField', '~> 1.0'
pod 'FMDB'
end
If You have any more question please ask me.
I'm trying to get cocoapods to install JTCalendar and I put the following line in the podfile:
pod 'JTCalendar', '~> 2.0'
Then, I run pod install and it installp the other components that are already installed in the project, but it does not install JTCalender.
Anyone know what I'm doing wrong?
When try to install pod file two components return error in terminal.
I am using Objective-c and iOS9.
please help me.
podfile:
pod 'DZNPhotoPickerController', '~> 1.6'
pod 'SDWebImage', '~> 3.7'
Errors in terminal:
pod install
Updating local specs repositories
Analyzing dependencies
[!] Unable to satisfy the following requirements:
SDWebImage (~> 3.7) required by Podfile
SDWebImage (= 3.7.3) required by Podfile.lock
SDWebImage (= 3.7) required by DZNPhotoPickerController/Core (1.6.0)
Reza Jan,
you can delete Podfile.lock and try pod install again. It will help with your second line of error. and remove pod 'SDWebImage', '~> 3.7' because it will be added as a dependency of DZNPhotoPickerController anyway.
Cheers