Client for interacting with the Google Pay API. See GoogleApi
for details about how the connection between your app and Google Play services is
managed.
| Task<PaymentCardRecognitionIntentResponse> |
getPaymentCardRecognitionIntent(PaymentCardRecognitionIntentRequest
request)
Requests a
PendingIntent
of the Google payment card recognition Activity to perform card recognition
action.
|
| Task<Boolean> |
isReadyToPay(IsReadyToPayRequest
request)
Determines if the user can make payments using the Google Pay API.
|
| Task<PaymentData> |
loadPaymentData(PaymentDataRequest
request)
Requests
PaymentData,
which contains the necessary information to complete a payment.
|
Requests a PendingIntent
of the Google payment card recognition Activity to perform card recognition action.
This API checks the following minimum requirements to finish a transaction using the Google Pay API:
WalletConstants.ENVIRONMENT_PRODUCTION, or is under development and can
accept fake results with
WalletConstants.ENVIRONMENT_TEST.Note that the requirements mentioned above are not exhaustive and can change over time.
When the Google payment card recognition Activity successfully recognizes a payment
card and returns an Intent
through
Activity.onActivityResult(int, int, Intent), your app should call
PaymentCardRecognitionResult.getFromIntent(Intent) to extract the
result.
| request | An instance of
PaymentCardRecognitionIntentRequest used to specify additional
settings. |
|---|
Determines if the user can make payments using the Google Pay API. We recommend to call this method before showing an option to pay using the Google Pay API.
IsReadyToPayRequest.Note that the requirements mentioned above are non-exhaustive and may change over time.
| request | An instance of IsReadyToPayRequest
used to specify additional filtering criteria. |
|---|
Requests PaymentData,
which contains the necessary information to complete a payment.
Note that this action will generally require UI to be shown to the users so they can select a payment method.
This API conforms to the protocol defined by AutoResolveHelper.
Instead of handling the returned exceptions yourself when the Google Pay payment sheet
needs to be shown (i.e. ResolvableApiException),
you should use the AutoResolveHelper
to pipe the results back to
Activity.onActivityResult(int, int, android.content.Intent). This
implementation frees your code from having to receive the result differently depending
on the display of the Google Pay payment sheet.
| request | An instance of PaymentDataRequest
used to specify additional settings. |
|---|