Troubleshooting & FAQs
Troubleshoot common error scenarios and find answers to frequently asked questions about standard iOS integration.
Following is the list of frequently asked questions while integrating our iOS SDK. If none of the below-mentioned questions resolves your problem, you can contact the Support team for any queries.
1. I am getting an error "Razorpay 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 script.
- Locate the directory in which Razorpay.framework is present in the archive that you are trying to upload.
- Move the attached script in the above directory and run it.
- Remove the script file.
2. I see a message on the screen to update my SDK. Will my customers also see the message?π
No. You see the update SDK alert because a newer version of our SDK is available. We recommend you to 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.
3. I am getting an error Image not loaded: .dyld
. What should I do?π
- 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.
4. Razorpay's framework is bitcode enabled. Do I also have to enable bitcode in my project?π
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 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.
6. I am getting an error saying "Could not find module RazorpayCommonCrypto".π
A module map is used to define the header files that should be converted into modules and used by your project. Razorpay 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 this script in the directory that contains
Razorpay.framework
file and run it from your terminal.
7. I have integrated with the Razorpay Payment Gateway to accept payments on my mobile app. However, it gets rejected when I try to publish my app on the Apple App Store. The following message is displayed, "We noticed that your app offers a subscription with a mechanism other than the in-app purchase API." How to resolve this?π
- Cause: As per Apple's policy, if you use a subscription model in your iOS app, you must use Apple's in-app purchase APIs. Apple does not redirect out of the app for digital product purchases.
- Resolution: Use Apple's in-app purchase APIs.
8. Why did my App get rejected by the iOS team as per the guideline 3.1.1?π
An application involving a subscription model could be rejected because of the guideline 3.1.1 - Business - Payments - In-App Purchase. This is due to the fact that subscription comes under the Auto-renewable subscriptions to a service section of the Apple guidelines.
You cannot use an external payment gateway to accept payments by selling digital products or content. You must use Appleβs In-App Purchase to avoid app rejection.
List of Restricted Payment Modesπ
- Consumable content like lives or gems in a game.
- Non-consumable content like premium features in an app.
- Auto-renewable subscriptions to a service, like cloud storage or a magazine.
- Non-renewing subscriptions to a service or content that lasts for a limited time, like access to an in-game battle pass.
ON THIS PAGE