Troubleshooting & FAQs
Troubleshoot common error scenarios and find answers to frequently asked questions about standard iOS integration.
1. I am getting an error "Curlec contains unsupported Architecture x86_64" while submitting the archive to the app store. What should I do?
When a framework is distributed, it contains architectures of the simulators so that the consumer of the framework can build it on a simulator. However, when uploading the archive on iTunes, you have to strip these architectures. If you use Cocoapods, it strips the simulator architectures on its own.
Since you are not using it, please follow the below-mentioned steps:
- Download the .
- Locate the directory in which Razorpay.framework is present in the archive that you are trying to upload.
- Move the attached script to the above directory and run it.
- Remove the script file.
No. You see the update SDK alert because a newer version of our SDK is available. We recommend you use the latest SDK. This message shows up only when running the app on a simulator or using a test key to initialize the SDK.
- Ensure that Razorpay.framework is present in your project settings in both the Embedded Binaries and Linked Frameworks.
- Set Always Embed Swift Libraries to "yes" in the project settings. It can happen because of the incompatibility between the developed Swift version with Razorpay.framework and the Swift version of your project.
- We recommend using the framework compiled with the required Swift language from our iOS documentation.
Razorpay's bitcode enabled framework works even if you do not enable bitcode in your project.
5. I am getting an error "Module compiled with Swift X version cannot be imported in the Swift Y version." What should I do?
There are multiple Swift versions available, but unfortunately, Apple does not make all the versions compatible, so we release frameworks compiled in multiple Swift versions.
- Download the framework that is compatible with your project.
- If you run into a compatibility issue, ensure that you try both frameworks.
A module map is used to define the header files that should be converted into modules and used by your project. Curlec handles this internally.
- Cause: By default, the Xcode's name is assumed to be Xcode.app. For example, your default Xcode appears as Xcode9.3.
- Resolution: Insert script in the directory that contains
Razorpay.framework
file and run it from your terminal.
7. My builds are failing and I am getting an error "Cannot find protocol declaration for RazorpayPaymentCompletionProtocol." What should I do?
Add the following code in the ViewController.m
file:
include <Razorpay/Razorpay-Swift.h> instead of <Razorpay/Razorpay.h> in your ViewController.m file
This will improve the iOS sample app experience and reduce the build failure.
No, we do not support Xamarin. However, since Xamarin is essentially a wrapper around Android and iOS, you can create your own Xamarin wrapper using our
and SDKs.You can refer to Xamarin for integrating native
and libraries. Alternatively, you can use web integration to open the checkout form in a web view.To check the SDK version:
- Open your iOS project in Xcode.
- In the project navigator, locate the
Podfile
in the root directory of your project. - Open the
Podfile
and look for the line that specifies the Razorpay SDK pod. The version number is represented byx.y.z
.
To update the iOS Standard SDK, follow these steps:
- In your project’s Podfile, specify the . If you do not mention any version, it automatically picks the latest version from Cocoapods.
- Run
pod repo update
to fetch the latest release versions of the pods. - After updating, ensure that the integration is successful and there are no issues with the updated SDK.
If you want to accept payments on your Android or iOS apps without integrating with our native SDKs, you can reuse your Standard Integration code. This approach opens the checkout form in a WebView within your mobile app. Know more about
.If none of the above-mentioned questions resolves your problem, you can contact the
for any queries.Is this integration guide useful?
ON THIS PAGE