Here is my 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
I installed 6 dependencies in total. The app is working just fine on the simulator and on the device. However, when I install it on iTunes Connect, it does not accept my built by saying:
Invalid Bundle - One or more dynamic libraries that are referenced by your app are not present in the dylib search path.
I searched a lot on the internet and tried a lot of things, but they all concluded with a frustration.
I'd be very glad if anyone having this issue once and achieved it somehow just tell me how s/he did it?