SvenTiigi / WhatsNewKit

Showcase your awesome new app features 📱
https://sventiigi.github.io/WhatsNewKit/
MIT License
3.92k stars 193 forks source link

CocoaPods could not find compatible versions for pod "WhatsNewKit" #12

Closed saldous closed 5 years ago

saldous commented 5 years ago

Can't install via cocoapods, xcode 10.1

saldous commented 5 years ago

Looks like it needs min iOS 10 deployment target, won't work with 9.0

SvenTiigi commented 5 years ago

Hey @saldous

Yes the minimum deployment target is set to iOS 10.0 because WhatsNewKit is supporting the HapticFeedback API via the UIFeedbackGenerator API.

But the good news is that I've found an easy solution to drop the deployment target to iOS 9.0 while breaking non existing API's.

The feature branch ios-9-deployment-target contains those changes. You can integrate and test this feature branch in your Project with CocoaPods:

pod 'WhatsNewKit', :git => 'https://github.com/SvenTiigi/WhatsNewKit.git', :branch => 'ios-9-deployment-target'

Of course this is the first attempt and some progress needs to be done on this feature-branch before it will be merged in the develop branch. But I hope this quick solution might help you 🙌

saldous commented 5 years ago

I appreciate the effort. I just ran a report to see how many of my users are on iOS 9, it was only 93, so I decided to drop support for it and make the min. 10.0 now anyway.