sf89
sf89

Reputation: 5238

Carthage, embed third party frameworks in my own framework

I'm building my own iOS framework that I want to make available via Carthage. It relies on two other frameworks, also installed via Carthage. When a user installs my framework, does he get the third party frameworks I installed?

Upvotes: 0

Views: 344

Answers (1)

Peter Willsey
Peter Willsey

Reputation: 1098

I believe you add all your Carthage dependencies into your framework's Cartfile. Carthage will use this to resolve your dependencies and download and build them.

Upvotes: 1

Related Questions