Skip to content
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

Module deployment target issue #81

Closed
grantkemp opened this issue Feb 23, 2016 · 4 comments
Closed

Module deployment target issue #81

grantkemp opened this issue Feb 23, 2016 · 4 comments

Comments

@grantkemp
Copy link

HI When I have tried to build using Cocoapods,
I have set my build target to 8.0 but I get this error when trying to build:
Module file's minimum deployment target is ios8.0 v8.0:

Any ideas how to resolve?

@fulldecent
Copy link
Owner

I am not sure, but I am pretty confident that this is an issue with CocoaPods. I have seen the same thing with another Pod I was using.

The solution was to change the target api but for other targets I had (like UI Tests).

@grantkemp
Copy link
Author

Looks like its working partially - I now only get an issue reported about XCode unable to find FDTakeDelegate. Its an older codebase - was this deprecated?

@fulldecent
Copy link
Owner

Yes, the API update did away with that. Please use these callbacks:

/// A photo was selected
public var didGetPhoto: ((photo: UIImage, info: [NSObject : AnyObject]) -> Void)?

/// A video was selected
public var didGetVideo: ((video: NSURL, info: [NSObject : AnyObject]) -> Void)?

/// The user selected did not attempt to select a photo
public var didDeny: (() -> Void)?

/// The user started selecting a photo or took a photo and then hit cancel
public var didCancel: (() -> Void)?

/// A photo or video was selected but the ImagePicker had NIL for EditedImage and OriginalImage
public var didFail: (() -> Void)?

@grantkemp
Copy link
Author

Fab - Thanks for the quick response.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants