[ Web Proxy ]
URL:
Viewing: https://developers.google.com/pay/api/android/guides/setup [Back]  [Original]

Set up Google Pay API  |  Google Pay API for Android  |  Google for Developers Skip to main content

Set up Google Pay API Stay organized with collections Save and categorize content based on your preferences.

outlined_flag

Before you begin

To prepare your app, complete the steps in the following sections.

App prerequisites

To use the Google Pay API on Android, your app must be:

Set up your app and your Google Pay account

If either of the following criteria apply to you, use Google Play In-app Billing to implement a payment button in your app:

Configure your app

To configure your app, complete the steps in the following sections.

App dependencies

Add the Google Play services dependency for the Google Pay API to your module's Gradle build file (typically app/build.gradle or app/build.gradle.kts):

Groovy

dependencies {
    implementation 'com.google.android.gms:play-services-wallet:20.0.0'
}

Kotlin

dependencies {
    implementation("com.google.android.gms:play-services-wallet:20.0.0")
}

When you're ready to go live, refer to Publish your integration for important information.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2026-08-11 UTC.

[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2026-08-11 UTC."],[],["To utilize the Google Pay API, ensure your app is on the Google Play store and meets `minSdkVersion` 21 and `compileSdkVersion` 34 or higher. Install the Google Wallet app with a payment method. If Google processes payments or you sell digital goods, use Google Play In-app Billing. Add the `com.google.android.gms:play-services-wallet:19.4.0` dependency to your module's Gradle file. In your `AndroidManifest.xml`, enable the API with the `meta-data` element: `com.google.android.gms.wallet.api.enabled` with a value of `true`.\n"]]

Web Proxy Viewer  |  New URL  |  Original Page