Почему я не могу запустить 'pod install'? - PullRequest
0 голосов
/ 10 мая 2018

Когда я пытаюсь запустить pod install, я получаю:

output

Хотя мое соединение установлено, а Github не отключено. Я попытался удалить и переустановить cocoapods, но он все еще не работает. Есть идеи?

Подфайл:

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'App' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks

  source 'https://github.com/CocoaPods/Specs.git'

  use_frameworks!

  # Pods for Smile

  plugin 'cocoapods-wholemodule'

  target 'AppTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'AppUITests' do
    inherit! :search_paths
    # Pods for testing
  end

  pod 'Firebase/Core'
  pod 'Firebase/AdMob'
  pod 'Firebase/Messaging'
  pod 'Firebase/Database'
  pod 'Firebase/Invites'
  pod 'Firebase/DynamicLinks'
  pod 'Fabric', '~> 1.7.2'
  pod 'Crashlytics', '~> 3.9.3'
  pod 'Firebase/RemoteConfig'
  pod 'Firebase/Auth'
  pod 'GoogleSignIn'
  pod 'Firebase/Storage'
  pod 'Firebase/Performance'

  pod 'CryptoSwift', :git => "https://github.com/krzyzanowskim/CryptoSwift", :branch => "swift4"

  pod 'lottie-ios'

  pod 'SwiftyGif', :git => "https://github.com/kirualex/SwiftyGif", :branch => "swift4"

end

Я изменил «Firebase / Crash» только для Fabric & Crashlytics

1 Ответ

0 голосов
/ 10 мая 2018

Возможно, ваше существующее зеркало репозитория находится в плохом состоянии. Удалите его, чтобы начать с нуля:

rm -rf ~/.cocoapods
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...