Получение невозможно найти спецификацию при установке модуля - PullRequest
0 голосов
/ 10 июля 2019
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'testprofile' do
  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

  # Pods for testprofile
  pod 'AppAuth', :git => 'https://github.com/GemHQ/react-native-app-auth.git', :branch => 'master', :tag => 'v2.4.0'

  target 'testprofile-tvOSTests' do
    inherit! :search_paths
    # Pods for testing
  end

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

end

# end
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

pod 'DCTAuth', :git => 'https://github.com/danielctull/DCTAuth.git'

Я продолжаю получать [!] Unable to find a specification for 'AppAuth'., когда я бегу pod install

Я пробовал много вещей, но ошибка не исчезла.Я не знаю, в чем здесь проблема.Что я делаю не так?

...