I create a library framework for my project and I want the framework to be able to depend on Google Analytics library. How do I import the headers into the framework because unlike an app target, framework doesn't have a bridging header? And importing the Google Analytics headers inside the framework's public header file will give other unexpected errors (include of non-modular header inside framework module).I create a library framework for my project and