这是我的 Podfile:
# Uncomment this line to define a global platform for your project
platform :ios, '9.2'
# Uncomment this line if you're using Swift
use_frameworks!
target 'My_App_Name' do
pod 'LocationKit','~>3.0'
pod 'Bolts'
pod 'FBSDKCoreKit'
pod 'FBSDKShareKit'
pod 'FBSDKLoginKit'
pod 'Parse'
end
我总共安装了 6 个依赖项。该应用程序在模拟器和设备上运行良好。但是,当我在 iTunes Connect 上安装它时,它不接受我构建的内容:
Invalid Bundle - 您的应用程序引用的一个或多个动态库不在 dylib 搜索路径中。
我在互联网上搜索了很多东西并尝试了很多东西,但它们都以沮丧而结束。
如果有人遇到过这个问题并以某种方式实现了它,我会很高兴告诉我他/她是如何做到的?