You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
write an app target with a bridging header (let's say our app is called Baz)
write a Swift test case that imports that app, either via import Baz or @testable import Baz
compile the test target and observe a warning
The warning given is:
Implicit import of bridging header 'Baz-Bridging-Header.h' via module 'Baz' is deprecated and will be removed in a later version of Swift
If the warning is legitimate, it's unclear how it should be fixed. The only fixes I've found are removing the import (but then you can't test your code from Swift) or deleting the app's bridging header (but then you can't use your app's ObjC from its Swift).