“pod update” doesn't update to latest version

前端 未结 8 837
[愿得一人]
[愿得一人] 2021-01-07 23:28

Here is my podfile I use in the project:

source \'https://github.com/CocoaPods/Specs.git\'
platform :ios, \'9.0\'
use_frameworks!

pod \'AFNetworking\', \'~&         


        
8条回答
  •  [愿得一人]
    2021-01-07 23:52

    In my case, Neon wouldn't update for me. It turns out it was because of the deployment target.

    Changed platform :ios, '8.0' to platform :ios, '10.0'

    And update worked normally.

提交回复
热议问题