0
votes

I have an old framework that can has a specific scheme that is shared so Carthage can build it. I want to use that scheme with Cocoapods. Is that possible?

As a side note, does pod spec lint build a specific scheme or does it basically try to run xcodebuild with the source_files you specify in the podspec?

1

1 Answers

0
votes

pod spec lint and podspecs in general generate their own Xcode targets and schemes.

Typically, the podspec specifies the files and build information for libraries that get aggregated with an app's Xcode project to create an Xcode workspace.

So, as far as I know, the answer to your question is no.