ios - How to download a deprecated pod -
i using pod file in previous ios project want include in new project well. has been deprecated , unable include using pod install in terminal. how it?
edit1: there way manually include pod existing project instead of "pod installing" it?
if want install deprecated pods, include version of pod when declare in podfile.
for example, in order install version 2.6.3 of afnetworking via cocoapods, here's how declare in podfile:
pod ‘afnetworking’, ‘2.6.3’
doing pod install
installs correctly.
Comments
Post a Comment