我正在尝试将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框架不会产生任何错误。这也可以解释为什么app build在xcode中运行时会出现故障。有什么想法吗?
答案 0 :(得分:2)
我正在使用Xcode 9.2,使用Swift 3.2。 起初我会在AppDelegate.swift文件中获得相同的“没有这样的模块'AWSMobileClient'”错误。
我的解决方案:
答案 1 :(得分:1)
安装pod后,您需要打开.xcworkspace您无法从.xcodeproj访问它们
Here是对Xcode项目和Xcode Workspace之间差异的一个很好的总结。
答案 2 :(得分:1)
在我上面回答@Stephen Kwan [https://stackoverflow.com/a/48572298/3941896]
我的问题是我在podfile中复制了+粘贴的冗余目标。它看起来像这样:
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target :'RM1' do
use_frameworks!
# other pods
pod 'AWSMobileClient', '~> 2.6.6'
end
target 'RM1' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for RM1
target 'RM1Tests' do
inherit! :search_paths
# Pods for testing
end
target 'RM1UITests' do
inherit! :search_paths
# Pods for testing
end
end
将2 target: 'RM1'
合并后,运行pod install
它起作用了。