Questions tagged [podfile]

The Podfile is a specification that describes the dependencies of the targets of one or more Xcode projects. The file should simply be named Podfile.

A pod file is used with CocoaPod and CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects.

370 questions
0
votes
1 answer

iOS App CocoaPod Blues: Podfile not pulling in Frameworks any more

I have an Build issue (with cocoapods) that's been dogging me for a day. It came out of the blue as the Builds were working fine until yesterday. The way the frameworks section of my cocoapods is setup is: For the framework platform :ios, '7.0' def…
CoolDocMan
  • 637
  • 7
  • 29
0
votes
0 answers

Lower Deployment Target on Project with Cocoapods

I've been creating a project with the default development target (I believe it was 11.1). For whatever reason, I thought itd be a good idea to lower the development target to 10.0 which created 36 errors mostly of my classes not recognizing pods I…
Jacobo Koenig
  • 11,728
  • 9
  • 40
  • 75
0
votes
0 answers

Unable to find specification for '$PODNAME'

Below is my podfile platform :ios, '11.0' source 'https://github.com/CocoaPods/Specs.git' project '/Users/sylvanm/Desktop/Programming/Xcode/Practice/First Apps on phone/iMango/iMango.xcodeproj' target 'iMango' do pod 'iMango' end It says…
Sylvan_M
  • 23
  • 3
0
votes
1 answer

I am receiving an error in swift from the Protobuf/Wrappers import in the Pod file

in my GFBProtocolBuffers.h, I am receiving this error at this line. #import It says lexical or preprocessor Issue, 'Protobuf/Wrappers.pbobjc.h' file not found. I am not sure what is even going on here. If anyone has any…
Frank Boccia
  • 81
  • 1
  • 10
0
votes
1 answer

Automatically select proper path to local CocoaPods framework

I have a local framework. Since I work from different computers - I have different local paths to this framework. So, whenever I build it on another machine - I need to change the path. That is how I change it: target 'SomeTarget' do # pod…
iWheelBuy
  • 5,470
  • 2
  • 37
  • 71
0
votes
3 answers

No such module 'FBSDKLoginKit'

I just copied my project from my back up folder to another folder in desktop and its giving me this error. I have updated my pod again after removing FBSDKLoginKit still it's not working. If I remove this module and then build also some other pod…
Ash
  • 41
  • 1
  • 12
0
votes
1 answer

Is there any way to specify "latest" version for a pod library?

According to the docs you can use the latest version of a pod library by simply omitting its version in the podfile. Is there any way to use the latest version by specifying something like + or * or latest?
Adriano Di Giovanni
  • 1,445
  • 1
  • 16
  • 34
0
votes
1 answer

Podfiles seem to be causing issues with building in Xcode

I am currently working on a project within Xcode using Cocoapods as a plugin which include some plugins like the GoogleMessagingService. However, I get this one error everytime I compile this project and it will only go away when I remove Cocoapods…
MatPonting
  • 27
  • 7
0
votes
0 answers

Application crashes if we compile in Xcode 9

Application started crashing on device when we build application from Xcode 9, the application is working fine on the simulator but crashes on the device. Below are the device crash logs Crash logs Sep 22 18:57:33 iPhone…
0
votes
1 answer

Why POD file cannot import target project header files in Xcode?

I'm using PODS and modify them as well. I came to encounter a situation where I need a POD file say PODTest to import file TargetTest.h which is main target header file. I checked if target files can import header files but not vice versa. I could…
Hiren Prajapati
  • 717
  • 3
  • 10
  • 25
0
votes
1 answer

Xcode 8.3 XCtest issue with CocoaPods

Swift xctest class would not build using inherit! :search_paths when referencing main target module files. Error occurred @testable import HelloWorld where HelloWorldClassA would be unknown ref platform :ios, '10.0' target 'HelloWorld' do …
mutable2112
  • 439
  • 4
  • 15
0
votes
0 answers

Podfile.lock: No such file or directory

I have scavenged all over the internet trying different solutions to solve this issue however none of the pod install or cocoapods update worked then clean and build worked. This xcode project was created from an exported Unity3d project and the…
Brett A
  • 183
  • 1
  • 1
  • 5
0
votes
0 answers

Problems connecting SimpleAuth with podfile

I connected Simpleauth but after the build up there are a lot of errors I use Xcode 8.3.1 swift 3. iOS 10.2
koliush
  • 186
  • 10
0
votes
1 answer

Not able to install pod

I am trying to install a pod. Following is my Podfile(my project name is NLP): source 'https://github.com/CocoaPods/Specs.git' platform :ios, '9.0' def pod_target pod 'Alamofire','~>4.4' end target 'NLP' do use_frameworks! pod_target …
Bharath Reddy
  • 636
  • 1
  • 5
  • 21
0
votes
2 answers

Pod Update of Firebase throwing errors

I am trying to install the Firebase Performance SDK and following their instructions on the site: https://firebase.google.com/docs/perf-mon/get-started-ios When I run the pod install step it gives me the following error: firebase performance…
Learn2Code
  • 1,974
  • 5
  • 24
  • 46