Problem with cocoa pods and deployment target iOS 7.0
My project has deployment target iOS 7.0 and I am trying to install Fox using cocoa pods (so in my podfile I have platform :ios, "7.0"). I get the following error:
[!] Unable to satisfy the following requirements:
Fox (~> 1.0.0)required byPodfile
If I change my deployment target to 8.0 the error goes away but unfortunately I have to support iOS 7.
Any ideas?
Hmm, not anything that immediately comes to mind. I'll take a look at it in the next few days.
— Sent from my iPhone
On Mon, Oct 5, 2015 at 8:47 AM, kremizask [email protected] wrote:
My project has deployment target iOS 7.0 and I am trying to install Fox using cocoa pods (so in my podfile I have platform :ios, "7.0"). I get the following error: [!] Unable to satisfy the following requirements:
Reply to this email directly or view it on GitHub: https://github.com/jeffh/Fox/issues/44
Fox (~> 1.0.0)required byPodfileIf I change my deployment target to 8.0 the error goes away but unfortunately I have to support iOS 7. Any ideas?
Hey @kremizask,
What version of Xcode are you using? It seems to me that Cocoapods prevents ios frameworks from being installed for iOS 7 or lower since they are not supported in production apps.
That being said, I haven't upgraded Fox's swift code to 2.0 (which I plan on doing soon).
Sorry for taking so long to respond.
I am using Xcode 7.2 now and still having this issue. If the iOS 7 + swift + cocoa pods combo was the cause of the problem shouldn't using Quick also present this issue? Cocoa pods doesn't seem to complain with Quick in the same project.