In this example project, comment out the one #import
line in BridgingHeader.h
and it will yield an error of unresolved identifier
in AppDelegate.swift
https://github.com/lacyrhoades/GLSlideshow/tree/stackoverflow
As another approach, and what I understand is the "correct" approach, if in AppDelegate.swift
we add import GoogleCastRemoteDisplay
this does NOT fix the error, but it makes a new one saying no such module GoogleCastRemoteDisplay
Is this a problem with the library's podspec? I want to make my own Pods but I am confused: When is a bridging header needed for a Pod, when is it not?