Questions tagged [cocoapods-1.2]

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

14 questions
23
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
  • 12,816
  • 31
  • 101
  • 184
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
  • 1,675
  • 2
  • 20
  • 44
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

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…
CMS Signage
  • 2,755
  • 1
  • 26
  • 50
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
  • 67
  • 12
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,426
  • 1
  • 15
  • 32
1
vote
0 answers

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,064
  • 7
  • 37
  • 75
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
  • 5,493
  • 3
  • 36
  • 59
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
  • 19,425
  • 10
  • 78
  • 99
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
  • 8
0
votes
0 answers

My framework is not showing up in CocoaPods.org after successful publish

I created a custom library and I want to publish it in Cocoapods. It is successfully published and when I search in CocoaPods.org, I found my library but whenever, I click on it, it takes me directly to the source github page. Does anyone have any…
Natasha
  • 5,685
  • 1
  • 27
  • 47
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
  • 227
  • 2
  • 14
0
votes
1 answer

cocoapods multiple target results in redefinition

I am experiencing a lot of 'Redefinition' and 'has a previous declaration' errors from updating my Podfile recently. I have multiple targets and I am sharing a few pods between them all. I was previously using 0.XX and have recently updated to 1.2…
egarlock
  • 549
  • 3
  • 10