модуль не был обновлен, хотя он показывает обновление, доступное через «модуль устаревший» - PullRequest
0 голосов
/ 06 ноября 2019

Я пытаюсь обновить свои модули, я перечисляю обновления модулей через

pod outdated

enter image description here

podfile (Более того, я даже попытался указать 'Firebase/Auth', '6.3.1' in podfile, чтобы указать версию, но без использования [ "-" используется вместо приложения, NDA -_-])

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


def extension_pod
#   pod 'ReadabilityKit', '0.7.1'
    pod 'SDWebImage', '~> 4.0'
    pod 'Firebase'
    pod 'Firebase/Database'
    pod 'Firebase/Auth'
    pod 'FirebaseUI/Database'
    pod 'Firebase/Storage'
    pod 'Firebase/Core'

end

target '-' do

extension_pod
pod 'LGSideMenuController'
pod 'Firebase/MLVision'
pod 'Firebase/MLVisionTextModel'
#pod 'FirebaseUI', '~> 5.0'
pod 'Firebase/Messaging'
pod 'TOCropViewController'
# [START google_pod]
pod 'GoogleSignIn', '4.1.2'
pod 'ARSLineProgress'
#pod 'TesseractOCRiOS', '4.0.0'
# [END google_pod]
pod 'TwitterKit'
pod 'DateTools'
pod 'Fabric'

  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

  # Pods for -

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

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

  target '-E' do

      extension_pod

      end

end

Команды, которые я выполнил до сих пор, чтобы обновить мое Firebase/Auth репо,

  • обновление модуля 'Firebase'
  • обновление модуля 'Firebase / Auth'
  • pod install --no-repo-update
  • pod repo update && pod update 'Firebase / Auth'

Все это отображается следующим образом, но не обновляется доконкретная версия, показанная pod outdated, мне не хватает какой-либо команды для процесса обновления?

Updating local specs repositories
Analyzing dependencies
Downloading dependencies
Generating Pods project
Integrating client project
Pod installation complete! There are 17 dependencies from the Podfile and 33 total pods installed.

1 Ответ

1 голос
/ 06 ноября 2019

Другая зависимость требует, чтобы FirebaseAuth была более низкой версией. См. Podfile.lock для получения подробной информации.

Обратите внимание, что вы хотите обновить FirebaseAuth pod, а не Firebase/Auth, который является подспец Auth в Firebase pod.

Это может быть связано с блокировкой модуля GoogleSignIn в старой версии.

...