PAYTM SDK Installation and Setup for Android App
Paytm Integration in Android App: https://developer.paytm.com/docs/v1/android-sdk Server side integration https://github.com/Paytm-Payments Create a developer account here: https://developer.paytm.com/ Get api key from your account (There are Test api detail and production api detail) https://dashboard.paytm.com/next/apikeys Below is for during implementation……Android 1. Dependency dependencies { compile(‘com.paytm:pgplussdk:1.2.3’) { transitive = true; } } 2. Permissions 3. Service For Staging environment: PaytmPGService service = PaytmPGService.getStagingService(); For Production environment: PaytmPGService service = PaytmPGService.getProductionService(); 4. Order Note:- before call below code you have to call api to your…