Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
設定 Google Pay API
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
事前準備
如要完成應用程式的準備工作,請完成下列各節的步驟。
應用程式必要條件
如要在 Android 上使用 Google Pay API,您的應用程式必須符合下列條件:
- 透過 Google Play 商店發布。
- 使用下列設定建構:
minSdkVersion 23 以上版本
compileSdkVersion 34 以上版本
如要設定應用程式,請完成下列各節的步驟。
應用程式依附元件
將 Google Pay API 的 Google Play 服務依附元件,新增至模組的 Gradle 版本檔案 (通常為 app/build.gradle 或 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")
}
準備好上線時,請參閱「發布整合」一文,瞭解重要資訊。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2026-05-01 (世界標準時間)。
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2026-05-01 (世界標準時間)。"],[],["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"]]