You are using:
-@stripe/stripe-react-native version: ^0.2.3
-react-native version: 0.65.1
You're seeing linker errors like:
-Undefined symbol: __C.NSOperationQueue.SchedulerTimeType
-Combine.Scheduler in Foundation
- Update iOS Deployment Target
Set the deployment target to at least iOS 13.
-Open your iOS project in Xcode (ios/YourProject.xcworkspace)
-Select the project > Build Settings > iOS Deployment Target → Set it to 13.0 or higher.
Or update in ios/Podfile:
platform :ios, '13.0'
Then run:
cd ios
pod install
cd ..