-
Notifications
You must be signed in to change notification settings - Fork 22
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
Framework Issues #48
Comments
It's complaining about not finding #if TARGET_OS_IPHONE
#import <UIKit/UIKit.h>
#else
#import <Cocoa/Cocoa.h>
#endif |
Are you still having this problem? |
I didn't try again. Falled back to manual inclusion. I'll try and inform you |
@abbeycode I solved the problem with #import <TargetConditionals.h> // <-- THIS LINE ADDED
#if TARGET_OS_IPHONE
#import <UIKit/UIKit.h>
#else
#import <Cocoa/Cocoa.h>
#endif I will tell about UnzipKit if I overcome the problem |
I got this error when tried to upload to iTunesConnect, using
There is also some other malformations in framework 😂 but as far as it works there is no problem. |
Interesting. If you're working off of a fork, just update the |
I did and now is uploading the binary \o/ |
How are you producing the framework? Are you using Carthage? |
Nope, simply dragged |
I was reading back through this thread, and I couldn't tell if UnzipKit is being affected, or if this only affected UnrarKit. Is there any work left to do on UnzipKit related to using it as a dynamic framework? |
I didn't tried to figure out how to resolve the problem with UnzipKit yet, I'll try after new year eve. |
I tried UnzipKit framework again, now the problem is |
Can you try the |
@abbeycode tested and it works perfectly |
This has been merged to |
Thank you very much |
Hi,
I wanted to add framework for dynamic linking to my project, it doesn't show iOS framework in
Embedded Binaries
and even when I fixed it, I had issues forresources.bundle
file.Interestingly, I had not these issues with UnrarKit, while I get
UnrarKit/Classes/UnrarKit.h:12:9: 'Cocoa/Cocoa.h' file not found
error.The text was updated successfully, but these errors were encountered: