How to add a framework inside another framework (Umbrella Framework)

2016-01-09T00:14:56

I have build a framework using the following tutorial.

And I also got this framework.

I am trying to implement the second Framework inside mine, from what I read in the Apple docs the resulting framework is called "Umbrella Framework".

I added the second framework in framework using drag and drop and the verify that it is in the "Link Binary With Libraries".

And after I tried to make the next import in one of the classes of the my framework:

#import <CrashReporter/CrashReporter.h>

I received an error as the imported framework is not visible.

Also I have seen the stackoverflow post: How to create an umbrella framework in iOS SDK?

Update

Have anyone tried to extract the PLCrashReporter classes for iOS and integrate the in a project?

You can find my attempt here.

Copyright License:
Author:「Laur Stefan」,Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.
Link to:https://stackoverflow.com/questions/34681435/how-to-add-a-framework-inside-another-framework-umbrella-framework

About “How to add a framework inside another framework (Umbrella Framework)” questions

I have build a framework using the following tutorial. And I also got this framework. I am trying to implement the second Framework inside mine, from what I read in the Apple docs the resulting fra...
How to make umbrella framework in xcode 8? I saw this How to create an umbrella framework in iOS SDK? and How to add a framework inside another framework (Umbrella Framework), but i cant make 'Umb...
How to add two or more than two framework in a single framework. Is there any way to add more than two framework in a single binary so that If I have to add it in "Embedded Binaries" then I will ad...
I am trying to streamline my development by creating some re-usable Frameworks which incorporate features I commonly re-use in multiple projects. However, having setup one of my Frameworks I have
I am trying to create a static umbrella framework which holds various 3rd party sub frameworks. So i've followed this tutorial below: How to create an umbrella framework in iOS SDK? Unfortunatel...
I've created a framework in which is inserted the second framework, the so-called "umbrella framework". When I insert the framework in the test application(embedded binaries and linked frameworks and
I want to create an umbrella framework in iOS SDK. My requirements are: I have a framework called "Framework A", I want to create another framework called "Framework B". I want to add "Framework A...
I am trying to create a private umbrella framework and I am getting some linking issues while linking the umbrella framework with my application. SUB is the sub framework and Wrapper is my umbrella
I have a question about whether Pod-App.framework in /Build/Product directory, is it an umbrella framework? I just found Pods_App.the framework has a header Pods-App-umbrella.h and searched around...
I have created Umbrella framework by adding sub-framework manually. I wanted to know how to manage dependency of this sub-frameworks using Carthage or Cocoapods. I know that creating Umbrella

Copyright License:Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.