Questions tagged [podspec]

This is the file extension for CocoaPods, which is distributed as a ruby gem

Cocoapods (http://cocoapods.org/) is a dependency management framework for XCode. It allows you to declaratively define project dependencies and have them included in the build of your project. It's like Apache Maven or Ruby Gems for XCode.

370 questions
0
votes
2 answers

pods error while pull the code

I have installed the pods in my project.Every time I pull the code from bitbucket getting pods error.Because of this error every time I'm reinstalling the pods when I pull the code.Is there any other solution to resolve this issue.Can anyone please…
Bhavani chada
  • 61
  • 2
  • 10
0
votes
1 answer

podspec from project that also uses CocoaPods

Summary: How do I make a podspec that includes a project itself using a Podfile? I've build a Mac framework and as part of the workspace I use a cocoapod library, OpenSSL-Universal. The linked library is all written in C, whereas my project is in…
Gargoyle
  • 9,590
  • 16
  • 80
  • 145
0
votes
0 answers

/Podfile.lock: No such file or directory - no solutions working?

Ok, I have looked at nearly every other question relating to this problem Xcode /Podfile.lock: No such file and diff: /../Podfile.lock: No such file or directory NONE of these solutions are working for me. In 1 project only, I get these…
blue
  • 7,175
  • 16
  • 81
  • 179
0
votes
0 answers

How to import a OC Pod directly in a Swift workspace

My Swift project has a pod wrote by Objective-C, and if I want use it, I have to make a Bridge-file. Is there other better idea to import directly like this import MYPOD, just like import a Swift Pod.
huangxinyu
  • 247
  • 3
  • 11
0
votes
1 answer

how to use pod package to package third libraries into the target

I have a framework project that has dependency private third libraries, i want to use pod package to pack the project so that users can only add one framework. But the fact is the third libraries didn't pack into the final framework. My package…
0
votes
0 answers

#import "sqlite3.h" from a pod's source

I have a private podspec for a library that relies on Apple's sqlite3.h. Unfortunately, it fails lint: - ERROR | xcodebuild: Returned an unsuccessful exit code. You can use `--verbose` for more information. - ERROR | xcodebuild: …
Steven Fisher
  • 44,462
  • 20
  • 138
  • 192
0
votes
1 answer

Use build configuration on Swift and Objective C

I have Swift project in which I have installed my SDK by cocoapods. In Swift project I have configured LOCAL, STAGING, and PRODUCTION schemes. When I switch schemes, Xcode recognizes which one to compile, but this is woking only on the Swift project…
Gog Avagyan
  • 135
  • 1
  • 7
0
votes
3 answers

Xcode Workspace - Not finding imports from framework development pod

I've set up a workspace with two Swift projects in it: one a framework I'm developing, the other a demo app for the framework. Podfile looks like this: platform :ios, '9.0' workspace 'foo.xcworkspace' target 'framework' do project…
BadmintonCat
  • 9,416
  • 14
  • 78
  • 129
0
votes
1 answer

Error while doing lint command on private pod "Encountered an unknown error (no implicit conversion of nil into String) during validation."

I'm creating a private pod depending on another private pod the linter works well when I don't add any dependency but when I add the dependency and run the lint command it gives me that error Encountered an unknown error (no implicit conversion of…
nahlamortada
  • 489
  • 6
  • 16
0
votes
1 answer

Cocoapods not showing my project as Tested

I have a project that I've added as a Cocoapod. It is covered by tests, yet the Cocoapods project page does not show the tests. Here is the link to my project page: https://cocoapods.org/pods/SKTableViewDataSource Note, Tested: X in the right hand…
Sean Kladek
  • 4,396
  • 1
  • 23
  • 29
0
votes
3 answers

Create ios framework with private source

I want to create objective-c framework. I generate podspec,test with "lib lint" push trunk. Part of my podspec : s.source_files = 'MyFramework/*.{h,m}' s.public_header_files = 'MyFramework/*.h' s.private_header_files = 'MyFramework/Private.h' But…
0
votes
1 answer

Can't expand Cocoapod on CocoaPods website

I have created my first CocoaPod and published it. On the website, I am able to search and find it, but I am not able to expand. Instead of an expand button, I have 3 buttons - Site, Docs, and Spec. Clicking on the link takes me directly to the…
Josh
  • 1,031
  • 2
  • 19
  • 31
0
votes
1 answer

Update libwebp podspec

The libwebp Podspec is out of date for both 0.5.2 and 0.6.0 (6 weeks due) I can submit the podspec updates, but I couldn't locate the original Podspec creator (It seems Google themselves do not maintain it). Any way to contact to original Podspec…
Shahar Hadas
  • 2,641
  • 1
  • 27
  • 29
0
votes
1 answer

Cocoa pod v0.39.0 not working with Xcode 8

My current project using cocoa pods of version 0.39.1, and my current pod version in my system is 1.1.1, so when i try to install the cocoa pods in my project path, it gave me warning saying [!] Invalid Podfile file: [!] Unsupported options…
Madhu
  • 869
  • 1
  • 17
  • 37
0
votes
1 answer

publish pod repo encounter "xcodebuild: Returned an unsuccessful exit code"

I'm trying to publish a pod repo writing in Objective-C to public space. It seems everything works well, but when I use "pod lib lint" to check the podspec file, following error appeared: - ERROR | [iOS] xcodebuild: Returned an unsuccessful exit…
fizix100
  • 73
  • 1
  • 10