What is an order id and how to generate it?
What is an order id and how to generate it?
What is the process for raising a request for a new feature?
What is the process for raising a request for a new feature?
How can I update the existing **'razorpay-pod'**?
How can I update the existing **'razorpay-pod'**?
- Go to your project’s iOS folder and run ‘pod update’ to update all the pods.
- If you do not want to update all pods, run ‘pod update razorpay-pod’.
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?
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?
In the new M1 MacBook, why am I not able to compile the Capacitor Razorpay plugin for release mode?
In the new M1 MacBook, why am I not able to compile the Capacitor Razorpay plugin for release mode?
- Use Rosetta 2 for launching the app on your Mac.
- Add the following lines to Podfile within
post_install do |installer|.
How can I check the Razorpay Capacitor Standard SDK version?
How can I check the Razorpay Capacitor Standard SDK version?
- Open your Capacitor project in your preferred code editor.
- Open the
package.jsonfile in the root directory of your project. - In the
dependenciessection, look for the Razorpay entry. The version number is specified next to the package name in the formatx.y.z.
How can I update the Razorpay Capacitor Standard SDK version?
How can I update the Razorpay Capacitor Standard SDK version?
- Open the terminal or command prompt and navigate to your project directory where the
package.jsonfile resides. - Use the npm update command followed by the package name to update a specific package to its latest version. For example, npm update
<razorpay_package_name>(replace<razorpay_package_name>with the name of the package you want to update). - If you are using a Capacitor iOS application, run
cd ios && pod repo update && pod updateto ensure the internal iOS dependencies are updated to the versions set by the Razorpay package. This is because cocoapods may not automatically update the internal trunk spec to fetch the latest versions. - After running the update command, review the updates fetched by npm to ensure they do not introduce any breaking changes.
- Conduct thorough testing to ensure that the updated packages do not adversely affect the application functionality and commit the changes.