Questions tagged [cocoapods-1.2]

CocoaPods is the dependency manager for Cocoa projects. this tag is for issues caused by version 1.2

16 questions
27
votes
3 answers

FBSDKCoreKit and the include of non-modular header inside framework module errors

None of the following threads (and many similar) helped me: Include of non-modular header inside framework module XCode6: Receiving error "Include of non-modular header inside framework module" While trying to install the Facebook SDK in my iOS…
Malloc
  • 15,434
  • 34
  • 105
  • 192
3
votes
1 answer

How to share parent(host) project pod with framework project swift?

i am developing Framework, i have added this framework project into host project. now i want to add cocoapods pod(framework) into parent(host) project. and share same pod into child(framework) project. or is there something i can add to Podfile and…
Sheshnath
  • 3,293
  • 1
  • 32
  • 60
2
votes
4 answers

Using private pod and public pod in the same project

I've just pushed a private pod to my.domain.com:apps/MyPrivatePod.git. I'd like to use both this private pod and other public pods in my project platform :ios, '8.0' target 'Testing' do pod 'AFNetworking', '2.6.0 ' // This is supposed to be a…
7ball
  • 2,183
  • 4
  • 26
  • 61
2
votes
0 answers

Cocoapods use_frameworks! causes link errors

I want to use some Swift pods in my Object-C app, so I add use_frameworks! to my Podfile.After that, I run pod update. However, it cause many link errors. Xcode show me an error at #import ('Masonry.h' file not found), I've tried many…
Kid Lee
  • 31
  • 2
2
votes
1 answer

pod in testing target return no such module error

I have the following pod file, which works fine for my normal code but as soon as I want to import a pod from the test target in one of my tests it says No such module. I have tried building for testing, building for normal, I literally tried…
Reshad
  • 2,570
  • 8
  • 45
  • 86
1
vote
1 answer

Podspec Error: The `source_files` pattern did not match any file

I am creating cocoa pod test library. I added podspec file to it as Pod::Spec.new do |s| s.name = "TestFrame" s.version = "0.0.1" s.summary = "A short description of TestFrame." s.homepage =…
Thullo
  • 97
  • 15
1
vote
1 answer

Cocoapods pod repo push git

I am trying to push my pod to local repo. Before that, I have verified pod lib lint on my repo, and working fine locally $ pod lib lint --swift-version=5.0…
Ankit Thakur
  • 4,739
  • 1
  • 19
  • 35
1
vote
1 answer

Error when adding s.frameworks 'XCTest' to podspec dyld: Library not loaded: rpath/XCTest.framework/XCTest

I have a CocoaPod which uses the XCTest framework. To import XCTest to the pod, I added s.frameworks = 'XCTest' to the .podspec file. I am now able to import XCTest to the pod classes but when trying to run the Example project, I am getting the…
Tal Zion
  • 6,308
  • 3
  • 50
  • 73
1
vote
0 answers

cocoapods 1.2 Always Embed Swift Standard Libraries inconsistent behavior

What is the basis of this? All my targets use the same pods and has $(inherited) Target1 shows No - $(inherited) Target2 shows Yes - $(inherited) Target3 shows No - $(inherited) Target4 shows No - $(inherited) Target5 shows No -…
Ted
  • 22,696
  • 11
  • 95
  • 109
1
vote
1 answer

Apple Mach-O Linker Error when trying to use RestKit

I installed cocoapods and it shown as below Analyzing dependencies Downloading dependencies Using ISO8601DateFormatterValueTransformer (0.6.1) Using RKValueTransformers (1.1.3) Using RestKit (0.27.0) Using SOCKit (1.1) Using TransitionKit…
F.Duh
  • 53
  • 1
  • 1
  • 8
0
votes
1 answer

Facing issue while trying to init the pods on project

I hope you all are doing well. I'm facing issue while trying to init the pod in the project. Cocoapods is already installed in the system. XCode Dev intstall is also there, In XCode in command line the xcode version is also selected. Don't know what…
Adnan Khan
  • 25
  • 7
0
votes
1 answer

Is there a way to find the pod that was update after pod update in post_install

Trying to catch the pod that was updated using pod update I want to catch the pod and eventually find its target(I know how to find the target) what I wanted is there a way to catch or target that got update in post_install
Bharath NS
  • 43
  • 7
0
votes
1 answer

How to create SDK with framework that using cocoa-pods

I have a framework that using with some cocoa pods. now I'm trying to create SDK from the framework, but don't show all the classes, how do I do it?
0
votes
0 answers

Material pods ErrorTextField

Here is my code for the ErrorTextField in a sample project. It is working fine in a view controller but this this time I put it in a cell in a tableview. Now the error is not showing, worse the textFieldDidEndEditing is not triggering the saving of…
0
votes
1 answer

Someone ran 'pod update' and now my app crashes with podfile.lock issue

We have gone through all the steps a million times: $ sudo gem install cocoapods $ rm -rf Bizzy\ Books.xcworkspace $ pod install Deleting derived data... changing build settings... NOTHING is working! And all because one guy ran "pod update" and…
Brad Caldwell
  • 344
  • 2
  • 14
1
2