jeffh / Fox

Property Based Testing Library for Objective-C and Swift. QuickCheck for Apple's Platforms.
http://fox-testing.rtfd.org
Other
624 stars 30 forks source link

Problem with cocoa pods and deployment target iOS 7.0 #44

Open kremizask opened 8 years ago

kremizask commented 8 years ago

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:

If I change my deployment target to 8.0 the error goes away but unfortunately I have to support iOS 7.

Any ideas?

jeffh commented 8 years ago

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 notifications@github.com 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:

  • Fox (~> 1.0.0) required by Podfile If I change my deployment target to 8.0 the error goes away but unfortunately I have to support iOS 7. Any ideas?

    Reply to this email directly or view it on GitHub: https://github.com/jeffh/Fox/issues/44

jeffh commented 8 years ago

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).

kremizask commented 8 years ago

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.