shin8484 / PopupWindow

PopupWindow is a simple Popup using another UIWindow in Swift
MIT License
417 stars 29 forks source link

Can't use with Cocoapods #12

Open haroldogtf opened 6 years ago

haroldogtf commented 6 years ago

When performing pod install the error appears:

[!] CocoaPods could not find compatible versions for pod "PopupWindow": In Podfile: PopupWindow

Specs satisfying the PopupWindow dependency were found, but they required a higher minimum deployment target.

Which version should I use?

dchatry commented 6 years ago

Is your project deployment target for iOS 10 or above? Looks like this pod doesn't have support for iOS 9 and below.

Had a somewhat related issue, when using:

pod 'PopupWindow'

the pod version would be locked at 0.1.0, if you need the last version (0.2.6) you need to use:

pod 'PopupWindow', :git => 'https://github.com/shin8484/PopupWindow.git'
haroldogtf commented 6 years ago

Ok! Thank you!