Troubleshooting and FAQs

Troubleshoot common error scenarios and find answers to frequently asked questions.



Your customer is unable to click the Cancel button because the navigation bar is hidden. Follow the steps to

.

This issue is caused by the new changes introduced in Xcode 12.

To resolve this:

  1. Use for launching the app on your Mac.
  2. Add the following lines to Podfile within post_install do |installer| .
installer.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end

Know more about

.

For Expo: This error typically occurs when the react-native-razorpay package's native libraries are not included in the build. To resolve this, switch to a development build instead of an expo build, as development builds allow for the use of native libraries, which should enable the package to access the necessary functionality.

For React CLI: This error indicates that the react-native-razorpay package was not correctly installed. To fix this, try reinstalling the package.


Is this integration guide useful?