-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOS build "non-modular header inside framework" error #90
Comments
Hi @AndrejStarusev i'm getting the same error, Have you found any solution yet..? |
I am am also seeing error with plugin: /Users/gauravkumar/Desktop/pproject/ionic/mantra-migration/ios/capacitor-cordova-ios-plugins/sources/CordovaPluginZip/hmac.h:38:10: error: include of non-modular header inside framework module 'CordovaPlugins.hmac': '/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/memory.h' |
@AndrejStarusev did you solved this? |
@mobigaurav I have exactly same thing. Did you resolve this? |
I found solution for this:
|
adding this piece of code to the podfile ended my suffering with this issue
|
I'm working on developing a mobile app with angular/ionic and capacitor. After I added zip plugin, the app is no longer building iOS.
I'm getting an error
/Users/andrew/Documents/projects/casino-wallet/ios/capacitor-cordova-ios-plugins/sources/CordovaPluginZip/hmac.h:38:10: error: include of non-modular header inside framework module 'CordovaPlugins.hmac': '/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/memory.h'
.Xcode Version 11.4 (11E146)
Plugin version
^3.1.0
Maybe I have to use some specific swift version? Any suggestions are appreciated.
Example of usage:
import { Zip } from '@ionic-native/zip/ngx';
constructor(private zip: Zip){}
const unzipResult = await this.zip.unzip( zipUrl, this.storagePath, progress => { console.log('___p', progress); } );
The text was updated successfully, but these errors were encountered: