umbrella header for module 'myFramework' does not include header 'otherFramework.h'

后端 未结 12 1289
渐次进展
渐次进展 2021-01-31 07:19

My Swift / iOS9 framework \'viewer_protocol\' uses another and external Objective-C framework (CocoaAsyncSocket). I\'m using Carthage to build CocoaAsyncSocket. So far everythin

12条回答
  •  执笔经年
    2021-01-31 08:07

    I had the same issue today

    Umbrella header for module 'HockeySDK' does not include header 'BITHockeyBaseViewController.h'

    and the solution was

    1.build and run project and go-to Report Navigator

    2.look at the warning, click to expand details

    it will so you the file name where you need to make change as you can seen in below screen shot

    So i just updated my import statement in AppDelegate.m file

    New

    #import "HockeySDK/HockeySDK.h"
    

    Old

    #import 
    

    and issue gone..

    hope this will help someone. who are coming here for solution.

提交回复
热议问题