cocoapods

Xcode gRPC-Core Error: 'openssl_grpc/ssl.h' file not found

早过忘川 提交于 2019-12-25 17:14:38
问题 Xcode: 11.2.1 Mac: 10.15.2 Beta Pod version: 1.8.4 I was trying to Archive my Mac app on Xcode, then below error in my Xcode: I can compile my app without a problem, just can't archive, I am thinking the issue might be I need to update my pod, when I run command in my terminal pod outdated it shows below info: so this is just my guessing. Here is an update: After tried Paul's suggestions, I got a different error: 回答1: From https://github.com/grpc/grpc/issues/20500#issuecomment-543241775:

ios - duplicate symbols for architecture armv7

爷,独闯天下 提交于 2019-12-25 16:27:20
问题 I'm getting error regarding duplicate symbols for architecture armv7. In my ~/Library/Developer/Xcode/DerivedData/Lyearn-grsqfwtcaisfvocmxxxiqgoezpco/Build/Products/Debug-iphoneos the following files exists: libEGOCache.a libPods-EGOCache.a libPods-UAProgressView.a libSDWebImage.a libFSImageViewer.a libPods-FSImageViewer.a libPods-WebASDKImageManager.a libUAProgressView.a libPods-AFNetworking.a libPods-ICViewPager.a libPods-pop.a libWebASDKImageManager.a libPods-AsyncDisplayKit.a libPods

Error “library not found for -lPods-MyProjectTests-KIF” when installing KIF in existing workspace

时间秒杀一切 提交于 2019-12-25 08:52:47
问题 I run into this error when adding KIF to an existing Xcode 6 workspace: ld: library not found for -lPods-MyProjectTests-KIF What may be special about my situation that MyProject.xcworkspace/ resides in the parent directory of MyProject.xcproject/ (and depends on several other sibling projects as well): ./MyProject.xcworkspace/ ./MyProject/ ./MyProject/MyProject.xcworkspace/ ./MyProject/Podfile My Podfile is as follows: target 'MyProjectTests', :exclusive => true do pod 'KIF', '~> 3.0',

Cannot install Firebase using cocoapods. It says “Unable to get local issuer certificate”

女生的网名这么多〃 提交于 2019-12-25 07:54:22
问题 Any comments or suggestions? My pod file looks like this: Uncomment this line to define a global platform for your project platform :ios, '8.0' Uncomment this line if you're using Swift use_frameworks! target 'ScheduleBuilder' do pod 'SwiftyJSON', '~> 2.3' pod 'Firebase', '>= 2.5.0' end 回答1: The solution was to remove and install curl again. If you're using brew, then it's just: brew uninstall curl brew install curl brew link curl --force Or Finally, You can solve it with this on Project

SequenceType Generator Generic Swift

寵の児 提交于 2019-12-25 06:12:20
问题 I'm having some issues trying to run this code, I found couple examples using the same code but I get compiler error Undefined symbols for architecture arm64: "ExpSwift.SearchResults.generate () -> Swift.IndexingGenerator<[A]>", referenced from: ExpSwift_Example.ViewController.(viewDidLoad () -> ()).(closure #1).(closure #3) in ViewController.o ld: symbol(s) not found for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) here is my code class

CocoaPods could not find compatible versions for pod “Moya”

瘦欲@ 提交于 2019-12-25 04:04:35
问题 My new project using swift 4.2 has below podFile : pod 'Moya', '12.0.1' pod 'SwiftyJSON', '4.0' pod 'Moya-SwiftyJSONMapper' Intalling using pod install --verbose shows error: [!] CocoaPods could not find compatible versions for pod "Moya": In Podfile: Moya (= 12.0.1) Moya-SwiftyJSONMapper was resolved to 1.0.0, which depends on Moya-SwiftyJSONMapper/Core (= 1.0.0) was resolved to 1.0.0, which depends on Moya (~> 6.0.0) CocoaPods could not find compatible versions for pod "SwiftyJSON": In

CocoaPods not installing Alamofire in Swift Parse Chat App

你。 提交于 2019-12-25 03:34:34
问题 I am trying to compile and run the following application (Swift Chat App using Alamofire). https://github.com/huyouare/SwiftParseChat I am using ruby-2.0.0 , cocoapods 0.37.1, xcode 6.3, Alamofire 1.2.0 I am installing it using the normal <pod install> command. No errors or warnings during the process. However, when compiling, I get: No such Module 'Alamofire' If I install Alamofire manually, however, when compiling I get an Apple Match-O Linker Error : ld: warning: directory not found for

Error “Invalid `Podfile` file: unknown regexp options - jackha.” when trying to run pod install

喜夏-厌秋 提交于 2019-12-25 03:15:34
问题 My username is Jack for the computer if that makes a difference for the jackha . I am trying to use cocoapods with firebase, but made the mistake of not doing pod init since I know almost nothing about code and am learning as I go. Here is what my Podfile consists of: Project /Users/jackminehan/Documents/Arbitrium/Arbitrium.xcodeproj platform :ios, '11.0' target "Arbitrium" do pod 'Firebase/Core' end And my error when trying to use pod install is: [!] Invalid `Podfile` file: unknown regexp

Xcode Compiler Error: ld: library not found for -lPods

送分小仙女□ 提交于 2019-12-25 02:56:13
问题 I'm trying to use the pod library to the project "BC LitterBox", after install pod according to http://cocoapods.org/ and Complier LitterBox, I'm now down to 1 compilation error, which I can't seem to get rid of. ld: library not found for -lPods clang: error: linker command failed with exit code 1 (use -v to see invocation) Anyone know what could be causing this? 回答1: When you install a pod, CocoaPods creates a new workspace that includes your project and whatever pod(s) you installed. You'll

Could not build Objective-C module 'Firebase': I have Xcode version 9.4.1 & Cocoapods 1.1.1

亡梦爱人 提交于 2019-12-25 02:22:16
问题 I keep getting this error along with "'FirebaseCore/FirebaseCore.h' file not found". I've reinstalled my pods about 4 times. Cleaning my project works for about 5 seconds the the first error pops up again then when I try to build it I get the second error. I've been researching for three days, I've tried every suggestion I've seen, and none of them have worked. Is anyone else having the same problem? Please help. 回答1: The current Firebase 5.x requires at least CocoaPods version 1.4.0. Add