归档项目swift4时没有此类模块“ Alamofire”

时间:2018-08-21 05:26:51

标签: swift xcode alamofire

您好,现在一切正常,但是当我尝试归档我的项目时,我遇到此错误“没有这样的模块'Alamofire',我不知道在堆栈溢出后的许多帖子之后发生了什么,但仍然面临着同样的问题 我的豆荚

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

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

  # Pods for WithinRider
   pod 'SwiftyJSON', '~> 4.0'
   pod 'Alamofire', '~> 4.7'
   pod 'MRProgress'
   pod 'GoogleMaps'
   pod 'GooglePlaces'
   pod 'SwiftGifOrigin'
   pod 'SDWebImage', '~> 4.0'
   pod 'Toast-Swift', '~> 3.0.1'
   pod 'Firebase/Core'
   pod 'Firebase/Messaging'
   pod 'AKMaskField'
   pod 'Socket.IO-Client-Swift', '~> 13.2.0'
   pod 'BadgeSwift', '~> 5.0'
   pod 'SwiftyGif'
   pod 'PagingTableView'
   pod 'AlamofireObjectMapper', '~> 5.0'


  target 'WithinRiderTests' do


    inherit! :search_paths
    # Pods for testing
  end

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

end

错误

No such module 'Alamofire'

3 个答案:

答案 0 :(得分:1)

您尝试过标准例程吗?

1。清理项目

2。关闭Xcode,重新安装缺少的Pod,然后重新打开Xcode

3。构建项目

答案 1 :(得分:0)

归档时出现了相同的错误。 Here是执行此操作的正确方法的链接。有时它不能解决您的问题。它也不能解决我的问题。因此,我不得不修改方案。在成就下,我更改了构建配置,因为我有多个构建配置。然后尝试重新存档项目。

答案 2 :(得分:0)

我已经通过将POD和Project目标部署目标更改为相同来解决了这个问题。