Search code examples
cocoapodspodfile

error when installing a pod file Cocoapods version 1.9.1


Podfile Contents

platform :ios, '11.0'

target 'AVWXKit' do

  use_frameworks!
  pod 'AVWXKit'
end

Terminal Input: pod install

Error Message:

You have either:
 * out-of-date source repos which you can update with `pod repo update`
   or with `pod install --repo-update`.
 * mistyped the name or version.
 * not added the source repo that hosts the Podspec to your Podfile.

I have tried repo update to no avail. Any help appreciated Using pod version 1.9.1


Solution

  • It seems that pod was never pushed to trunk: when I do pod search AVWXKit I get:

    Unable to find a pod with name, author, summary, or description matching AVWXKit

    To work around that, get the pod directly from its repo using:

      pod 'AVWXKit', :git => 'https://github.com/JanC/AVWXKit'