我正在尝试将 aws 框架与本机应用程序链接。我正在使用 cocoapods,我已经包含并安装了我需要的依赖项Podfile
platform :ios, '9.0'
use_frameworks!
target 'auth' do
inherit! :search_paths
pod 'AWSMobileClient'
pod 'AWSUserPoolsSignIn'
pod 'AWSAuthUI'
# Pods for auth
target 'authTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'auth-tvOS' do
# use_frameworks!
# Pods for auth-tvOS
target 'auth-tvOSTests' do
inherit! :search_paths
# Pods for testing
end
end
此时,当我import AWSMobileClient
在我的AppDelegate.swift
文件中收到此错误。
No such module 'AWSMobileClient'
当我有其他没有产生任何错误的 AWS 框架时,我不确定是什么导致了这个错误。这也可以解释为什么应用程序构建在 xcode 中运行时总是失败。对此有什么想法吗?