swift - Cocoapods: Determine pod version -
how can tell a) version of pod you're using , b) how change it?
i'm getting compile errors swiftyjson , wondering if it's because i'm using newer version i'm expecting.
podfile:
source 'https://github.com/cocoapods/specs.git' platform :ios, '8.0' use_frameworks! target ‘xxx’ pod 'swiftyjson', :git => 'https://github.com/swiftyjson/swiftyjson.git' ....... end
check podfile.lock
file. documentation says :
this file generated after first run of pod install, , tracks version of each pod installed.
to change version example 2.2
of installed pod use :
pod 'swiftyjson', '2.2.0'
and run
pod install
hope you
Comments
Post a Comment