shin8484 / PopupWindow

PopupWindow is a simple Popup using another UIWindow in Swift

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can't use with Cocoapods

haroldogtf opened this issue · comments

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?

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'

Ok! Thank you!