Latest version on Cocoa pods incorrect?
Why is the latest version on github 1.0.2 but the latest version available on cocoa pods 0.9.15?
I got this question to. The cocoa is not updated ?
In addition, we see a compile error when building with cocoapods -
The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.4.99.
I believe this can be fixed by just adding to the podspec -
s.platform = :ios, '13.0'
-Thanks!
it's because the podspec file is invalid
[!] Failed to load 'libPhoneNumber-iOS' podspec:
[!] Invalid `libPhoneNumber-iOS.podspec` file: syntax error, unexpected '<'
<!DOCTYPE html>
^
you can directly point to the git in the meantime till somebody fixes it
pod 'libPhoneNumber-iOS', :git => 'https://github.com/iziz/libPhoneNumber-iOS'
you can directly point to the git in the meantime till somebody fixes it
pod 'libPhoneNumber-iOS', :git => 'https://github.com/iziz/libPhoneNumber-iOS'
This won't work if you are using spec.dependency unfortunately. It only works in a Podfile, not a podspec 😞
Any progress about this? All users of this great library would love to see the latest changes available through CocoaPods.
HI! Is this abandoned?