設定 Google Pay API
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
先決條件
開始設定 Google Pay API 之前,請先詳閱下列注意事項與必備條件:
如果您還沒有 Android Studio,請先下載並安裝。
新增依附元件
Google Pay API 屬於 Google Play 服務的一部分,因此您只要匯入 Google Play 服務程式庫,就能取得所有必要元件。或者,您也可以自行選擇要編譯的 API。
如要匯入整個 Google Play 服務程式庫,請參閱設定 Google Play 服務。
如果只想編譯所需的 API,請在應用程式模組中開啟 build.gradle
檔案,並將以下內容新增至依附元件區塊:
dependencies {
implementation 'com.google.android.gms:play-services-wallet:18.1.3'
implementation 'com.android.support:appcompat-v7:24.1.1'
}
以上只是最新版 Google Pay API 程式庫需要的最低版本;您可以為應用程式選擇版本較新的依附元件。如需最新的 Google Pay API 版本資訊,請參閱設定 Google Play 服務。如需關於支援資料庫的最新資訊,請參閱支援資料庫設定。
修改資訊清單
如要在應用程式中啟用 Google Pay 功能,必須將下列 Google Pay API 中繼資料元素新增到您專案 AndroidManifest.xml
檔案的 <application>
元素中。
<meta-data
android:name="com.google.android.gms.wallet.api.enabled"
android:value="true" />
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-10-16 (世界標準時間)。
[[["容易理解","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"]],["上次更新時間:2024-10-16 (世界標準時間)。"],[[["To use the Google Pay API, your Android app must be distributed through the Google Play Store and built with a `minSdkVersion` of 21 or higher and a `compileSdkVersion` of 34 or higher."],["Before integrating, ensure you have the Google Wallet app installed, add a payment method, and comply with the Google Pay API Acceptable Use Policy and Google Play Developer Policy."],["Implement payments using Google Play In-app Billing if Google processes payments for you or if you sell digital goods."],["Integrate the Google Pay API by adding the necessary dependency to your app's Gradle build file and enabling it in your `AndroidManifest.xml` file."],["To go live, consult the publishing guide for essential information after completing the integration process."]]],[]]