IOS Payment Integration Steps
To enable some features i IOS we have to add some lines to Info.plist file
Paytm Integration: https://developer.paytm.com/docs/all-in-one-sdk/hybrid-apps/flutter/
<key>LSApplicationQueriesSchemes</key> <array> <string>paytm</string> </array> <key>URL Types</key> <string>paytmjkxkUB64788990278323</string>
RazorPay Integration: https://razorpay.com/docs/payment-gateway/flutter-integration/standard/
<key>LSApplicationQueriesSchemes</key> <array> <string>tez</string> <string>phonepe</string> <string>paytmmp</string> </array>
Permissions:
<key>NSPhotoLibraryUsageDescription</key> <string>Allow access to photo library</string> <key>NSCameraUsageDescription</key> <string>Allow access to camera to capture photos</string> <key>NSMicrophoneUsageDescription</key> <string>Allow access to microphone</string> <key>NSLocationWhenInUseUsageDescription</key> <string>This app needs access to location when open.</string> <key>NSLocationAlwaysUsageDescription</key> <string>This app needs access to location when in the background.</string>