How to check version of a CocoaPods framework

后端 未结 10 1912
醉话见心
醉话见心 2020-12-07 09:51

I have updated Flurry via CocoaPods, but how can I check if Flurry was updated?

I mean the terminal shown me that everything is ok:

Installing Flurry         


        
10条回答
  •  轮回少年
    2020-12-07 10:08

    pod outdated
    

    When you run pod outdated, CocoaPods will list all pods that have newer versions that the ones listed in the Podfile.lock (the versions currently installed for each pod) and that could be updated (as long as it matches the restrictions like pod 'MyPod', '~>x.y' set in your Podfile)

提交回复
热议问题