Xcode Framework: Umbrella header for 'Test' module does not include 'NewTest.h' header

framework module Test { umbrella header "Test.h" export * module * { export * } } 

This is what my module file looks like. How can I solve the following warning.

Umbrella header for 'Test' module does not include 'NewTest.h' header

I am not familiar with module files.

+1
source share
1 answer

You must have a module card

change code to -

  framework module Test { umbrella header "Test.h" export * module * { export * } explicit module BFAppLinkResolving { header "BFAppLinkResolving.h" link "BFAppLinkResolving" export * } explicit module BFWebViewAppLinkResolver { header "BFWebViewAppLinkResolver.h" link "BFAWebViewAppLinkResolver" export * } } 
-1
source

Source: https://habr.com/ru/post/1259387/


All Articles