Google Pay API 설정
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
기본 요건
시작하기 전에 다음과 같은 기본 요건을 검토해야 합니다.
Android 스튜디오가 아직 없다면 Android 스튜디오를 다운로드하고 설치합니다.
종속 항목 추가
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를 사용 설정하려면 프로젝트의 AndroidManifest.xml
파일에 있는 <application>
요소에 다음과 같은 Google Pay API 메타데이터 요소를 추가해야 합니다.
<meta-data
android:name="com.google.android.gms.wallet.api.enabled"
android:value="true" />
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2024-10-16(UTC)
[[["이해하기 쉬움","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(UTC)"],[[["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."]]],[]]