From 8d1fc970da3cc0a7479559e9e7289123c9ca511f Mon Sep 17 00:00:00 2001 From: Aleko Petkov Date: Fri, 7 Jan 2022 20:23:55 -0800 Subject: [PATCH] Explicitly import dependencies, instead of relying on PCH files. This is important in Swift projects, where you cannot use prefix headers. --- src/ios/CDVInAppBrowserNavigationController.h | 1 + src/ios/CDVInAppBrowserOptions.h | 1 + 2 files changed, 2 insertions(+) diff --git a/src/ios/CDVInAppBrowserNavigationController.h b/src/ios/CDVInAppBrowserNavigationController.h index bd186a2f2..3b65faa9b 100644 --- a/src/ios/CDVInAppBrowserNavigationController.h +++ b/src/ios/CDVInAppBrowserNavigationController.h @@ -17,6 +17,7 @@ under the License. */ +#import #import diff --git a/src/ios/CDVInAppBrowserOptions.h b/src/ios/CDVInAppBrowserOptions.h index c1c9fa533..90c6e136f 100644 --- a/src/ios/CDVInAppBrowserOptions.h +++ b/src/ios/CDVInAppBrowserOptions.h @@ -17,6 +17,7 @@ under the License. */ +#import @interface CDVInAppBrowserOptions : NSObject {}