Questions tagged [android-pay]

Android Pay (formerly Google Wallet) is a virtual representation of your wallet securely stored in the cloud. Your payment credentials, coupons/offers, and loyalty cards can then be easily accessed from any device or purchase flow that supports Android Pay.

Android Pay (formerly Google Wallet) is a virtual representation of your wallet securely stored in the cloud. Your payment credentials, coupons/offers, and loyalty cards can then be easily accessed from any device or purchase flow that supports Android Pay.

Please note that while Android In-App Billing leverages Android Pay, IAB questions should be tagged with

542 questions
2
votes
3 answers

How to integrate Google Pay?

I want to integrate Google Pay in my android application. I have tried this repo. getting the following error. This merchant is not enabled for google pay Here is some of my code which is causing the error. public static final HashMap
2
votes
0 answers

How to add a payment method to Google Pay programmatically?

I am working on an Android app that needs to be able to add a payment method to Google Pay. This feature is available for Apple Pay on iOS through PKAddPaymentPassRequestConfiguration. Is there an Android equivalent?
lufinkey
  • 342
  • 4
  • 15
2
votes
1 answer

Android API to get saved Loyalty Cards

We have Loyalty Card feature in our Android App. Creating and Saving Loyalty Card to Android Pay App is working fine. We followed the below link - https://developers.google.com/pay/save/guides/loyalty/get-started-android. It uses Android…
Nagesh Jatagond
  • 344
  • 2
  • 13
2
votes
0 answers

Google Play Inapp Receipt Validation - Correct Role?

I've been following the following guide on setting up a Google API service account for receipt validation https://stackoverflow.com/a/35138885/8667855. This tutorial advises selection of "View Financial Reports" as the service account role. However…
droidn00b
  • 91
  • 3
2
votes
0 answers

Android and Apple pay in Ionic app

I have a serious doubt in the availability of Android pay in Ionic apps. While searching for Android pay and Apple pay I got this discussion and this tutorial to integrate Apple pay. But no signs of Android pay anywhere. So guys, if anyone of you…
Sudheesh R
  • 1,767
  • 3
  • 23
  • 43
2
votes
0 answers

Is it possible to add Shipping Method to Android Pay default screen?

Apple Pay allows customizable fields on default confirmation screen Does Android Pay allow these fields to be customized/added to it?
Earther
  • 21
  • 1
2
votes
0 answers

why doesn't recieved for Wallet.Payments.loadMaskedWallet in judo android pay?

I try android judopay in android app. 1.my phone was unrooted. 2.Android pay app is installed on my phone and register card. 3.Apk is published on google play and I created Oauth certificate with signed APK's sha1 4.i used below code. private void…
2
votes
2 answers

Android Pay Error in "loadMaskedWallet"

I am trying to make a test payment with Android Pay. So far I have configured my device for testing based on this answer, I have configured a card in Android app in my device and based on this code: Wallet.Payments.isReadyToPay(mGoogleApiClient,…
Ultimo_m
  • 4,724
  • 4
  • 38
  • 60
2
votes
2 answers

How to open "save to android pay" url from android app?

Now I'm in the following situation: our server sends ready-for-use JWT hash for current user card, but there are seems to no way to open "save to android pay" url from android app button: there are only web applications integration tutorial:…
wingear
  • 819
  • 9
  • 21
2
votes
1 answer

Android Pay deeplink to saved loyalty card

I've managed to save a loyalty card to Android Pay inside an Android app by using the google dev guidelines: https://developers.google.com/save-to-android-pay/guides/loyalty/get-started . Right now my implementation just uses the JWT that's…
2
votes
0 answers

Generate a public key in an elliptic curve algorithm using a given private key

I know that this question has already been asked, but it seems I can't write the code to make it work. Lets say that we have the following keypair: Public Key (this is what I want to generate given the private key - base64 encoded string as Public…
2
votes
1 answer

Can not perform action after onSaveInstanceState | AndroidPay

I am using Android Pay in one of my fragments. Here is how (the relevant parts of) my fragment looks: public class PaymentsFragment extends Fragment implements View.OnClickListener, GoogleApiClient.OnConnectionFailedListener { private…
gsb
  • 5,520
  • 8
  • 49
  • 76
2
votes
0 answers

Loading a credit card to AndroidPay wallet programatically

I want to load a credit card to Android wallet programatically. Is this possible. I see the SDK provides APIs to load loyalty cards etc... but can a VISA/MC card be loaded programatically?
vikram
  • 135
  • 2
  • 10
2
votes
2 answers

Android Pay integration in native app

I have integrated Android Pay in my native Android app. It gives me the error: There are no accepted cards available for use with this merchant Android Pay is not available in my country (India), but I have changed my region to US on my Google…
Mamta Kaundal
  • 373
  • 1
  • 5
  • 22
2
votes
0 answers

Android Pay API in WebView

I am trying to implement the following button on an html page: https://developers.google.com/save-to-android-pay/reference/s2w-reference?hl=EN The button works perfectly in my web browser, but in the context of an Android WebView, it will not work.…
maggiomj
  • 174
  • 12