How to test android pay App in India

孤者浪人 提交于 2019-11-29 07:46:00
Bhavin Desai

Perform following steps by connecting your phone, to convert Android pay into testable environment:

  1. Install Android Pay apk from apkmirror website. Make sure you use correct apk variant.
  2. Turn on Sandbox Mode by executing following commands from command prompt:

adb shell cd /sdcard/Download; rm ­f android_pay_env_override_*; touch android_pay_env_override_sandbox;

  1. Reboot the phone
  2. Launch the Android Pay app and add following test credit card: Card Number: 4622 9431 2999 9943 Expiry: 12/17 CVV: 125
  3. Enter other details like address and proceed. So that card is added successfully.

You're done. Use ENVIRONMENT_SANDBOX to integrate and test Android Pay in your app.

Happy Testing !

PS: Revert from Sandbox to Production - Developer Instructions:

  1. Run following commands to revert Android Pay from Sandbox environment to Production environment:

adb shell cd /sdcard/Download; rm ­f android_pay_env_override_*;

  1. Restart your phone

  2. Use ENVIRONMENT_PRODUCTION or ENVIRONMENT_TEST to integrate and test Android Pay in your app

There is test environment in Android Pay "API"

But no test environment for Android Pay "APP"

You must add a "real" credit card which issued by banks in US to Android Pay APP. And Android Pay not support all US banks, you can find supported banks list here:https://support.google.com/androidpay/answer/6314169?hl=en

You can start test after add a real card in Android Pay APP even outside US.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!