SlideShare a Scribd company logo
1 of 18
Download to read offline
 
 
 
 
 
 
 
 
RAZORPAY PAYMENT GATEWAY
 
 
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
 
   
 
The document provides steps to integrate RazorPay Payment Gateway. 
 
The integration process requires following steps ‐ 
 
1. Create Account in RazorPay Step1
2. Create Account in RazorPay Step2
3. RazorPay Public Key Generation
4. Download RazorPay Jar file
5. Android Configuration
6. Android Manifest.xml Configuration
7. Android Activity class
8. Check Your Payment Details
9. For Making Payment Mode Live Step1
10. For Making Payment Mode Live Step2
11. For Making Payment Mode Live Step3
12. For Making Payment Mode Live Step4
13. For Making Payment Mode Live Step5
14. Now Change The Mode To Live
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
Create Account in RazorPay 
 
 
❖ Open www.razorpay.com and go to sign up to
❖ Create your account
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
Create Account in RazorPay Step 2 
 
 
❖ Fill all the following details to create your account.
❖ Business Name
❖ Individual Name
❖ Email
❖ Password
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
RazorPay Public Key Generation 
 
 
 
❖ After successfully creation of account You will get a API Public key For your Test Mode of Payment.
❖ Copy this API Public key for further use while integration.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
Download RazorPay Jar file 
 
 
 
❖ Click on the below link to download your RazorPay jar file.
​https://docs.razorpay.com/v1/page/android‐sdk‐v0110
❖ Scroll down and click on this download link to download jar file.
❖ Or you can download from below link too
​https://github.com/razorpay/razorpay‐android‐sample‐app/releases
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
Android Configuration 
 
 
 
 
 
❖ Keep RazorPay jar file in your android lib folder.
❖ And Add the below mentioned jar file in your project by :
FIle: ​razorpay.android.0.11.0.jar
Module Setting Or by writing this line in your Build.gradle file on dependencies
dependencies{
compile files('libs/razorpay‐android‐0.11.0.jar')
}
 
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
Android Manifest.xml Configuration 
 
 
❖ Use internet permission. :
​<uses‐permission android:name="android.permission.INTERNET"/>
❖ For OTP reading functionality, you need to add the following permission to your SDK:
<uses‐permission android:name="android.permission.RECEIVE_SMS" />
❖ We have to create a Checkout Activity of Razor pay so write this in your manifest file:
​<activity android:name="com.razorpay.CheckoutActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize" />
 
   
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
Android Activity Class 
 
❖ Class Code:
private void startpayment() { // this method integrate you to razor pay payment mode so
call this method when you want to do payment.
final String public_key = "rzp_test_cUkg8CuKJQiXS3"; //use your own public key here
final String img_url=“your image url here", ;
final AppCompatActivity activity = this; // to create razor CheckoutActivity pass your
current Activity.
final Checkout co = new Checkout();
co.setPublicKey(public_key);
try{
JSONObject options = new JSONObject("{" + "description: ‘your
description name '," + "image: '"+img_url+"'," + "currency: 'INR'}" );
options.put("amount", “500", ); //give your amount here
options.put("name", "Razorpay Testing"); //give name of product for which
payment is doing.
options.put("prefill", new JSONObject("{email: 'mobifly@gmail.com', contact:
‘9807656776'}"));
co.open(activity, options);
} catch(Exception e){ Toast.makeText(activity, e.getMessage(),
Toast.LENGTH_SHORT).show();
e.printStackTrace(); } }
public void onPaymentSuccess(String razorpayPaymentID){ // if payment is
successful..
try {
Toast.makeText(this, "Payment Successful: " + razorpayPaymentID,
Toast.LENGTH_SHORT).show();
}
catch (Exception e){
Log.e("com.merchant", e.getMessage(), e);
}
}
public void onPaymentError(int code, String response){
// if payment is not successful…
try {
Toast.makeText(this, "Payment failed: " + Integer.toString(code) + " " +
response, Toast.LENGTH_SHORT).show();
}
catch (Exception e){
Log.e("com.merchant", e.getMessage(), e);
}
}
 
   
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
Check Your Payment Details 
 
 
 
❖ After successfully done payment ​or failed payment you can check your payment history in Razor Pay                       
website. 
❖ Log in with your account in Razorpay.com  and go to payment option to check. 
❖ If Your payment in test mode work well And you want to make it live then click on test mode option and                                           
choose live mode on your top right side. 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
For Making Payment Mode Live 
 
 
❖ For making payment mode live go to option Activation and fill the 5 form.
❖ First fill the Contact Details form and click on next button. 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
For Making Payment Mode Live 
 
 
 
❖ For making payment mode live go to option Activation and fill the 5 form. 
❖ Now fill the Business Details form and click on next button. 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
For Making Payment Mode Live  
 
   
 
❖ For making payment mode live go to option Activation and fill the 5 form. 
❖ Now fill the Website Details form and click on next button. 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
For Making Payment Mode Live 
 
 
❖ For making payment mode live go to option Activation and fill the 5 form. 
❖ Now fill the Bank Account Details form and click on next button. 
 
 
 
  
 
 
   
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
 
For Making Payment Mode Live 
 
 
 
 
❖ For making payment mode live go to option Activation and fill the 5 form. 
❖ Now fill the Document Upload form and click on next button. 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
 
 
For Making Payment Mode Live 
 
 
 
❖ For making payment mode live go to option Activation and fill the 5 form.
❖ Now Submit the form.
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
Now Change The Mode To Live 
 
 
❖ After fill the activation form now your status will be active for changing the mode to live. 
❖ Check your profile for status. 
❖ Now change the mode to Live and get the API Public key for live payment. 
BrainBox Network. Copyright@2015. All rights reserved 
 
 
 
 
Thank You So Very Much
For queries please write on ​ashish@mobifly.in
Developed By
Danish Ali
Android Developer ‐ Mobifly
mobifly.in
 
BrainBox Network. Copyright@2015. All rights reserved 
 
 

More Related Content

What's hot

java and javascript api dev guide
java and javascript api dev guidejava and javascript api dev guide
java and javascript api dev guideZenita Smythe
 
Social Gold in-Flash Webinar Jan 2010
Social Gold in-Flash Webinar Jan 2010Social Gold in-Flash Webinar Jan 2010
Social Gold in-Flash Webinar Jan 2010Social Gold
 
How to run a Bitcoin or altcoin cryptocurrency faucet on WordPress
How to run a Bitcoin or altcoin cryptocurrency faucet on WordPressHow to run a Bitcoin or altcoin cryptocurrency faucet on WordPress
How to run a Bitcoin or altcoin cryptocurrency faucet on WordPressdashed-slug.net
 
Express checkout recurring payments
Express checkout recurring paymentsExpress checkout recurring payments
Express checkout recurring paymentsrpawluszek
 
Joomla virtuemart auspost secure pay payment gateway
Joomla virtuemart auspost secure pay payment gatewayJoomla virtuemart auspost secure pay payment gateway
Joomla virtuemart auspost secure pay payment gatewayWebkul Software Pvt. Ltd.
 
Cool New Advances in PayPal Express Checkout
Cool New Advances in PayPal Express CheckoutCool New Advances in PayPal Express Checkout
Cool New Advances in PayPal Express CheckoutPayPalX Developer Network
 
Securing APIs with OAuth 2.0
Securing APIs with OAuth 2.0Securing APIs with OAuth 2.0
Securing APIs with OAuth 2.0Kai Hofstetter
 
PayPal Account Authentication Service
PayPal Account Authentication ServicePayPal Account Authentication Service
PayPal Account Authentication ServiceSherief Razzaque
 
Abandoned carts
Abandoned cartsAbandoned carts
Abandoned cartsNetmera
 
Payment Gateways in India
Payment Gateways in IndiaPayment Gateways in India
Payment Gateways in IndiaMudit Gera
 
Password Replacement Technology : Removing Limitations of Current Passwords
Password Replacement Technology : Removing Limitations of Current PasswordsPassword Replacement Technology : Removing Limitations of Current Passwords
Password Replacement Technology : Removing Limitations of Current PasswordsDavid Kim
 
RaaS API Overview and Best Practices
RaaS API Overview and Best PracticesRaaS API Overview and Best Practices
RaaS API Overview and Best PracticesTango Card
 
Droidcon Paris: The new Android SDK
Droidcon Paris: The new Android SDKDroidcon Paris: The new Android SDK
Droidcon Paris: The new Android SDKPayPal
 
Accessing soft layer
Accessing soft layerAccessing soft layer
Accessing soft layercarlito dizon
 
RealMe Technical Overview 2013 v1.1
RealMe Technical Overview 2013 v1.1RealMe Technical Overview 2013 v1.1
RealMe Technical Overview 2013 v1.1Venkat Maddali
 

What's hot (20)

java and javascript api dev guide
java and javascript api dev guidejava and javascript api dev guide
java and javascript api dev guide
 
Payeezy Integration
Payeezy Integration Payeezy Integration
Payeezy Integration
 
Social Gold in-Flash Webinar Jan 2010
Social Gold in-Flash Webinar Jan 2010Social Gold in-Flash Webinar Jan 2010
Social Gold in-Flash Webinar Jan 2010
 
How to run a Bitcoin or altcoin cryptocurrency faucet on WordPress
How to run a Bitcoin or altcoin cryptocurrency faucet on WordPressHow to run a Bitcoin or altcoin cryptocurrency faucet on WordPress
How to run a Bitcoin or altcoin cryptocurrency faucet on WordPress
 
Express checkout recurring payments
Express checkout recurring paymentsExpress checkout recurring payments
Express checkout recurring payments
 
Joomla virtuemart auspost secure pay payment gateway
Joomla virtuemart auspost secure pay payment gatewayJoomla virtuemart auspost secure pay payment gateway
Joomla virtuemart auspost secure pay payment gateway
 
Cool New Advances in PayPal Express Checkout
Cool New Advances in PayPal Express CheckoutCool New Advances in PayPal Express Checkout
Cool New Advances in PayPal Express Checkout
 
Securing APIs with OAuth 2.0
Securing APIs with OAuth 2.0Securing APIs with OAuth 2.0
Securing APIs with OAuth 2.0
 
PayPal Account Authentication Service
PayPal Account Authentication ServicePayPal Account Authentication Service
PayPal Account Authentication Service
 
Abandoned carts
Abandoned cartsAbandoned carts
Abandoned carts
 
Payment Gateways in India
Payment Gateways in IndiaPayment Gateways in India
Payment Gateways in India
 
Password Replacement Technology : Removing Limitations of Current Passwords
Password Replacement Technology : Removing Limitations of Current PasswordsPassword Replacement Technology : Removing Limitations of Current Passwords
Password Replacement Technology : Removing Limitations of Current Passwords
 
DealChaser
DealChaserDealChaser
DealChaser
 
RaaS API Overview and Best Practices
RaaS API Overview and Best PracticesRaaS API Overview and Best Practices
RaaS API Overview and Best Practices
 
Bill Me Later
Bill Me LaterBill Me Later
Bill Me Later
 
SelfConnection
SelfConnectionSelfConnection
SelfConnection
 
Droidcon Paris: The new Android SDK
Droidcon Paris: The new Android SDKDroidcon Paris: The new Android SDK
Droidcon Paris: The new Android SDK
 
QuayPay - Summary
QuayPay - SummaryQuayPay - Summary
QuayPay - Summary
 
Accessing soft layer
Accessing soft layerAccessing soft layer
Accessing soft layer
 
RealMe Technical Overview 2013 v1.1
RealMe Technical Overview 2013 v1.1RealMe Technical Overview 2013 v1.1
RealMe Technical Overview 2013 v1.1
 

Viewers also liked

3 Pd Last Mile Delivery, Kreig Rugh
3 Pd Last Mile Delivery, Kreig Rugh3 Pd Last Mile Delivery, Kreig Rugh
3 Pd Last Mile Delivery, Kreig Rughkrugh
 
Delhivery Data One- Powering Omni Channel
Delhivery Data One- Powering Omni ChannelDelhivery Data One- Powering Omni Channel
Delhivery Data One- Powering Omni ChannelDelhiQuery
 
Starting a web-platform or a marketplace?
Starting a	web-platform or a marketplace?Starting a	web-platform or a marketplace?
Starting a web-platform or a marketplace?Lalamove / EasyVan
 
Last mile mobile app for logistics
Last mile   mobile app for logisticsLast mile   mobile app for logistics
Last mile mobile app for logisticsmobi fly
 
Amber pitch deck_f2
Amber pitch deck_f2Amber pitch deck_f2
Amber pitch deck_f2Kyle Byrd
 
Setting A Culture of Technical Excellence
Setting A Culture of Technical ExcellenceSetting A Culture of Technical Excellence
Setting A Culture of Technical ExcellenceExotel
 
Exotel For Last Mile Logistics
Exotel For Last Mile LogisticsExotel For Last Mile Logistics
Exotel For Last Mile LogisticsExotel
 
Tracxn Logistics tech report - India
Tracxn Logistics tech report - IndiaTracxn Logistics tech report - India
Tracxn Logistics tech report - IndiaTracxn
 
Tracxn Research - Logistics Tech Landscape, October 2016
Tracxn Research - Logistics Tech Landscape, October 2016Tracxn Research - Logistics Tech Landscape, October 2016
Tracxn Research - Logistics Tech Landscape, October 2016Tracxn
 
Fittr Pitch Deck
Fittr Pitch DeckFittr Pitch Deck
Fittr Pitch Decknolanperk
 
TEDx Manchester: AI & The Future of Work
TEDx Manchester: AI & The Future of WorkTEDx Manchester: AI & The Future of Work
TEDx Manchester: AI & The Future of WorkVolker Hirsch
 

Viewers also liked (13)

3 Pd Last Mile Delivery, Kreig Rugh
3 Pd Last Mile Delivery, Kreig Rugh3 Pd Last Mile Delivery, Kreig Rugh
3 Pd Last Mile Delivery, Kreig Rugh
 
Delhivery Data One- Powering Omni Channel
Delhivery Data One- Powering Omni ChannelDelhivery Data One- Powering Omni Channel
Delhivery Data One- Powering Omni Channel
 
Closing The Last Mile
Closing The Last MileClosing The Last Mile
Closing The Last Mile
 
Starting a web-platform or a marketplace?
Starting a	web-platform or a marketplace?Starting a	web-platform or a marketplace?
Starting a web-platform or a marketplace?
 
Last mile mobile app for logistics
Last mile   mobile app for logisticsLast mile   mobile app for logistics
Last mile mobile app for logistics
 
Amber pitch deck_f2
Amber pitch deck_f2Amber pitch deck_f2
Amber pitch deck_f2
 
Setting A Culture of Technical Excellence
Setting A Culture of Technical ExcellenceSetting A Culture of Technical Excellence
Setting A Culture of Technical Excellence
 
Exotel For Last Mile Logistics
Exotel For Last Mile LogisticsExotel For Last Mile Logistics
Exotel For Last Mile Logistics
 
Tracxn Logistics tech report - India
Tracxn Logistics tech report - IndiaTracxn Logistics tech report - India
Tracxn Logistics tech report - India
 
Tracxn Research - Logistics Tech Landscape, October 2016
Tracxn Research - Logistics Tech Landscape, October 2016Tracxn Research - Logistics Tech Landscape, October 2016
Tracxn Research - Logistics Tech Landscape, October 2016
 
Fittr Pitch Deck
Fittr Pitch DeckFittr Pitch Deck
Fittr Pitch Deck
 
TEDx Manchester: AI & The Future of Work
TEDx Manchester: AI & The Future of WorkTEDx Manchester: AI & The Future of Work
TEDx Manchester: AI & The Future of Work
 
Build Features, Not Apps
Build Features, Not AppsBuild Features, Not Apps
Build Features, Not Apps
 

Similar to Razorpay

Payment gateway
Payment gatewayPayment gateway
Payment gatewayHananBahy
 
How to Implement Stripe Get a Complete Insight!.docx.pdf
How to Implement Stripe Get a Complete Insight!.docx.pdfHow to Implement Stripe Get a Complete Insight!.docx.pdf
How to Implement Stripe Get a Complete Insight!.docx.pdfTechugo
 
Resume_YasirGhauri_HOD
Resume_YasirGhauri_HODResume_YasirGhauri_HOD
Resume_YasirGhauri_HODYasir Ghauri
 
Social Gold In-Flash Payments Webinar
Social Gold In-Flash Payments WebinarSocial Gold In-Flash Payments Webinar
Social Gold In-Flash Payments WebinarSocial Gold
 
Stripe Integration With MuleSoft
Stripe Integration With MuleSoftStripe Integration With MuleSoft
Stripe Integration With MuleSoftShyamRajPrasad
 
Creating an Uber Clone - Part XXXI - Transcript.pdf
Creating an Uber Clone - Part XXXI - Transcript.pdfCreating an Uber Clone - Part XXXI - Transcript.pdf
Creating an Uber Clone - Part XXXI - Transcript.pdfShaiAlmog1
 
Saml sap netweaver_fiori
Saml sap netweaver_fioriSaml sap netweaver_fiori
Saml sap netweaver_fioriNagendra Babu
 
Payment card for dummies sddc presentation @buet
Payment card for dummies sddc presentation @buetPayment card for dummies sddc presentation @buet
Payment card for dummies sddc presentation @buetSaidur Sujon
 
Odoo development
Odoo developmentOdoo development
Odoo developmentNidhi Patel
 
Setting up BuzzCity Account - Server Side API
Setting up BuzzCity Account - Server Side APISetting up BuzzCity Account - Server Side API
Setting up BuzzCity Account - Server Side APIBuzzCity-2015
 
Online Payments and You
Online Payments and YouOnline Payments and You
Online Payments and YouYos Riady
 
CS-Cart Addon : Stripe Connect Custom Account
CS-Cart Addon : Stripe Connect Custom AccountCS-Cart Addon : Stripe Connect Custom Account
CS-Cart Addon : Stripe Connect Custom AccountWebkul Software Pvt. Ltd.
 
Social Login User Manual by CedCommerce
Social Login User Manual by CedCommerceSocial Login User Manual by CedCommerce
Social Login User Manual by CedCommerceCedCommerce
 
Lecture 11. Microsoft mobile services
Lecture 11. Microsoft mobile servicesLecture 11. Microsoft mobile services
Lecture 11. Microsoft mobile servicesMaksym Davydov
 
Microsoft mobile services
Microsoft mobile servicesMicrosoft mobile services
Microsoft mobile servicesMaksym Davydov
 
Joomla virtue mart marketplace braintree payment gateway
Joomla virtue mart marketplace braintree payment gatewayJoomla virtue mart marketplace braintree payment gateway
Joomla virtue mart marketplace braintree payment gatewayWebkul Software Pvt. Ltd.
 
How to Integrate Stripe Payment with Liferay A Step-by-Step Guide
How to Integrate Stripe Payment with Liferay A Step-by-Step GuideHow to Integrate Stripe Payment with Liferay A Step-by-Step Guide
How to Integrate Stripe Payment with Liferay A Step-by-Step GuideInexture Solutions
 
How to implement payment gateway integration for non-credit card on Magento2
How to implement payment gateway integration for non-credit card on Magento2How to implement payment gateway integration for non-credit card on Magento2
How to implement payment gateway integration for non-credit card on Magento2Hirokazu Nishi
 
eCommerce Payment Gateways: An Introduction
eCommerce Payment Gateways: An IntroductioneCommerce Payment Gateways: An Introduction
eCommerce Payment Gateways: An IntroductionAidanChard
 

Similar to Razorpay (20)

Payment gateway
Payment gatewayPayment gateway
Payment gateway
 
Online banking
Online bankingOnline banking
Online banking
 
How to Implement Stripe Get a Complete Insight!.docx.pdf
How to Implement Stripe Get a Complete Insight!.docx.pdfHow to Implement Stripe Get a Complete Insight!.docx.pdf
How to Implement Stripe Get a Complete Insight!.docx.pdf
 
Resume_YasirGhauri_HOD
Resume_YasirGhauri_HODResume_YasirGhauri_HOD
Resume_YasirGhauri_HOD
 
Social Gold In-Flash Payments Webinar
Social Gold In-Flash Payments WebinarSocial Gold In-Flash Payments Webinar
Social Gold In-Flash Payments Webinar
 
Stripe Integration With MuleSoft
Stripe Integration With MuleSoftStripe Integration With MuleSoft
Stripe Integration With MuleSoft
 
Creating an Uber Clone - Part XXXI - Transcript.pdf
Creating an Uber Clone - Part XXXI - Transcript.pdfCreating an Uber Clone - Part XXXI - Transcript.pdf
Creating an Uber Clone - Part XXXI - Transcript.pdf
 
Saml sap netweaver_fiori
Saml sap netweaver_fioriSaml sap netweaver_fiori
Saml sap netweaver_fiori
 
Payment card for dummies sddc presentation @buet
Payment card for dummies sddc presentation @buetPayment card for dummies sddc presentation @buet
Payment card for dummies sddc presentation @buet
 
Odoo development
Odoo developmentOdoo development
Odoo development
 
Setting up BuzzCity Account - Server Side API
Setting up BuzzCity Account - Server Side APISetting up BuzzCity Account - Server Side API
Setting up BuzzCity Account - Server Side API
 
Online Payments and You
Online Payments and YouOnline Payments and You
Online Payments and You
 
CS-Cart Addon : Stripe Connect Custom Account
CS-Cart Addon : Stripe Connect Custom AccountCS-Cart Addon : Stripe Connect Custom Account
CS-Cart Addon : Stripe Connect Custom Account
 
Social Login User Manual by CedCommerce
Social Login User Manual by CedCommerceSocial Login User Manual by CedCommerce
Social Login User Manual by CedCommerce
 
Lecture 11. Microsoft mobile services
Lecture 11. Microsoft mobile servicesLecture 11. Microsoft mobile services
Lecture 11. Microsoft mobile services
 
Microsoft mobile services
Microsoft mobile servicesMicrosoft mobile services
Microsoft mobile services
 
Joomla virtue mart marketplace braintree payment gateway
Joomla virtue mart marketplace braintree payment gatewayJoomla virtue mart marketplace braintree payment gateway
Joomla virtue mart marketplace braintree payment gateway
 
How to Integrate Stripe Payment with Liferay A Step-by-Step Guide
How to Integrate Stripe Payment with Liferay A Step-by-Step GuideHow to Integrate Stripe Payment with Liferay A Step-by-Step Guide
How to Integrate Stripe Payment with Liferay A Step-by-Step Guide
 
How to implement payment gateway integration for non-credit card on Magento2
How to implement payment gateway integration for non-credit card on Magento2How to implement payment gateway integration for non-credit card on Magento2
How to implement payment gateway integration for non-credit card on Magento2
 
eCommerce Payment Gateways: An Introduction
eCommerce Payment Gateways: An IntroductioneCommerce Payment Gateways: An Introduction
eCommerce Payment Gateways: An Introduction
 

More from mobi fly

Mobifly - mobile and web application development company gurgaon - brochure
Mobifly -   mobile and web application development company gurgaon - brochureMobifly -   mobile and web application development company gurgaon - brochure
Mobifly - mobile and web application development company gurgaon - brochuremobi fly
 
Mixpanel Integration in Android
Mixpanel Integration in AndroidMixpanel Integration in Android
Mixpanel Integration in Androidmobi fly
 
Jenkins Setup Document
Jenkins Setup DocumentJenkins Setup Document
Jenkins Setup Documentmobi fly
 
Urban Airship & Android Application Integration Document
Urban Airship & Android Application Integration DocumentUrban Airship & Android Application Integration Document
Urban Airship & Android Application Integration Documentmobi fly
 
Procto r executive presentation
Procto r   executive presentationProcto r   executive presentation
Procto r executive presentationmobi fly
 
Monitoring as a_servihttp://www.slideshare.net/upload#ce_4_healthcareproviders
Monitoring as a_servihttp://www.slideshare.net/upload#ce_4_healthcareprovidersMonitoring as a_servihttp://www.slideshare.net/upload#ce_4_healthcareproviders
Monitoring as a_servihttp://www.slideshare.net/upload#ce_4_healthcareprovidersmobi fly
 

More from mobi fly (6)

Mobifly - mobile and web application development company gurgaon - brochure
Mobifly -   mobile and web application development company gurgaon - brochureMobifly -   mobile and web application development company gurgaon - brochure
Mobifly - mobile and web application development company gurgaon - brochure
 
Mixpanel Integration in Android
Mixpanel Integration in AndroidMixpanel Integration in Android
Mixpanel Integration in Android
 
Jenkins Setup Document
Jenkins Setup DocumentJenkins Setup Document
Jenkins Setup Document
 
Urban Airship & Android Application Integration Document
Urban Airship & Android Application Integration DocumentUrban Airship & Android Application Integration Document
Urban Airship & Android Application Integration Document
 
Procto r executive presentation
Procto r   executive presentationProcto r   executive presentation
Procto r executive presentation
 
Monitoring as a_servihttp://www.slideshare.net/upload#ce_4_healthcareproviders
Monitoring as a_servihttp://www.slideshare.net/upload#ce_4_healthcareprovidersMonitoring as a_servihttp://www.slideshare.net/upload#ce_4_healthcareproviders
Monitoring as a_servihttp://www.slideshare.net/upload#ce_4_healthcareproviders
 

Recently uploaded

Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraDeakin University
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfngoud9212
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfjimielynbastida
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsAndrey Dotsenko
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 

Recently uploaded (20)

Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning era
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdf
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdf
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 

Razorpay