I am trying to implement Stripe Payment Gateway in my iOS application. Which is on Xcode 8.2 with 10.2 simulator.
My application Build getting successful. But after building it, It says.
dyld: Library not loaded: @rpath/Stripe.framework/Stripe
Referenced from: /Users/user/Library/Developer/CoreSimulator/Devices/D27A4EC3-3B8A-4BBC-AB30-E9313AD95E1E/data/Containers/Bundle/Application/225274C8-EB99-476A-88A3-6F9981948220/Test App.app/Test App
Reason: image not found
Here is Bit of Code
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
registerForPushNotifications(application)
spinnerInitialization();
//STRIPE CONFIGURATION
Stripe.setDefaultPublishableKey("pk_test_YdACg6uENGmWrSWwAy00gWUx")
return true
}

Link Binary with Sources? And which dependency manager did you use? Carthage? - Artem NovichkovStripe.frameworkin my code - Pushpendra