4

我使用的是 XCode 7.3,最近迁移到 XCode 9.1。

因为,在移动设备上启动应用程序没有问题(编译、运行而不会崩溃)。

但是当我想存档应用程序时,它会因此错误而失败:"No such module 'RealmSwift'""No such module 'ObjectMapper'"

我正在使用 Pod:

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

def pods
platform :ios, '11.1'
pod 'RESideMenu', '4.0.7'
pod 'Alamofire', '4.6.0'
pod 'AlamofireImage', '3.3.0'
pod 'JSONHelper', '2.2.0'
pod 'SwiftyJSON'
pod 'Google/Analytics'
pod 'ObjectMapper', '~> 3.1'
pod 'AlamofireObjectMapper', '~> 5.0'
pod 'RealmSwift', '~> 3.0'
pod 'KVNProgress', '2.3'
pod "CalendarLib", '2.0'
pod 'Charts', '3.0.4'
pod 'SwiftEventBus', :tag => '2.2.0', :git => 'https://github.com/cesarferreira/SwiftEventBus.git'
pod "RichEditorView", :branch => 'swift-4', :git => 'https://github.com/cjwirth/RichEditorView.git'
pod 'SwiftHSVColorPicker'
pod 'Fabric'
pod 'Crashlytics'

end

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
        config.build_settings['SWIFT_VERSION'] = '4.0'
    end
  end
end

target 'target1' do
    pods
end

target 'target2' do
    pods
end

编辑

我发现了错误!当我使用arm64、armv7 和 armv7s归档时,它会失败,但如果我只使用 arm64 归档,这是成功的......但在 iPhone 5s 以下的设备上,应用程序不兼容!有没有办法解决?

4

0 回答 0