From 31ec30de193aa3117dbb7eda928ef3a365d5667c Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Tue, 19 Oct 2021 19:14:09 +0200 Subject: [PATCH] fix(ios): Avoid CDVScreenOrientationDelegate umbrella header warning (#5156) --- ios/Capacitor/Capacitor/Capacitor.modulemap | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ios/Capacitor/Capacitor/Capacitor.modulemap b/ios/Capacitor/Capacitor/Capacitor.modulemap index 3ecf37e505..b39eb8e8d1 100644 --- a/ios/Capacitor/Capacitor/Capacitor.modulemap +++ b/ios/Capacitor/Capacitor/Capacitor.modulemap @@ -1,7 +1,8 @@ framework module Capacitor { umbrella header "Capacitor.h" exclude header "CAPBridgedJSTypes.h" - + exclude header "CAPBridgeViewController+CDVScreenOrientationDelegate.h" + export * module * { export * } -} \ No newline at end of file +}