首页 > 解决方案 > 在 Pod 中使用“GooglePlacesRow”时没有此类模块“Eureka”错误

问题描述

之前在项目中,直接嵌入了 Eureka 和 GooglePlacesRow。现在,我正在尝试使用 pod 将 Eureka 和 GooglePlacesRow 更新到最新版本。但这仅在与GooglePlacesRow.

Xcode version 10.2.1
Swift Version 5
Eureka Version 5.0.0
GooglePlacesRow 3.2.0

我尝试了以下事情:

我的播客文件:

platform :ios, '11.0'
inhibit_all_warnings!

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

  # Pods for ProjectName
  pod 'SnapKit', '~> 4.2.0'
  pod 'KeychainAccess', '~> 3.2.0'
  pod 'Just', '~> 0.7.1'
  pod 'SwiftyJSON', '~> 5.0.0'
  pod 'PKHUD', '~> 5.2.1'
  pod 'GSMessages', '~> 1.7.2'
  pod 'RealmSwift', '~> 3.15.0'
  pod 'Pages', '~> 2.0.2'
  pod 'IQKeyboardManagerSwift', '~> 6.3.0'
  pod 'Firebase/Core', '~> 5.20.2'
  pod 'Firebase/Messaging', '~> 5.20.2'
  pod 'Firebase/Crash', '~> 5.20.02'
  pod 'GradientCircularProgress', :git => 
  'https://github.com/keygx/GradientCircularProgress'
  pod 'Zip', '~> 1.1.0'
  pod 'GRDB.swift', '~> 3.7.0'
  pod 'Localize-Swift', '~> 2.0.0'
  #pod 'Eureka', '~> 5.0.0'
  pod 'GooglePlacesRow', '~> 3.2.0'


end

提前谢谢☺️

标签: iosxcodecocoapodsswift5

解决方案


推荐阅读