시작하기
설치 단계와 이 플러그인의 전체 마크다운 가이드를 포함한 설정 지시를 복사하세요.
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-android-sms-retriever`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/android-sms-retriever/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
설치
설치플러그인을 설치하기 위해 AI-Assisted Setup을 사용할 수 있습니다. AI 도구에 Capgo 스킬을 추가하려면 다음 명령어를 사용하세요:
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins그다음에 다음 명령어를 사용하세요:
Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-android-sms-retriever` plugin in my project.만약 Manual Setup을 선호한다면, 플러그인을 설치하기 위해 다음 명령어를 실행하고 아래의 플랫폼별 지침을 따르세요:
bun add @capgo/capacitor-android-sms-retrieverbunx cap sync android수입
수입import { AndroidSmsRetriever } from '@capgo/capacitor-android-sms-retriever';안드로이드 요구 사항
안드로이드 요구 사항SMS Retriever는 안드로이드 기기의 Google Play 서비스가 필요합니다. 플러그인은 앱을 배포하는 서명 키에 대한 해시를 반환하는 앱의 해시가 포함된 인증 SMS가 필요합니다. 서명 키에 대한 해시를 생성합니다. 디버그, 릴리스 및 Play App Signing 빌드는 다른 해시를 가질 수 있습니다. READ_SMS 또는 RECEIVE_SMS 권한.
인증 SMS에 포함된 앱 해시를 생성하여 앱을 배포하는 서명 키에 대한 해시를 생성합니다. 디버그, 릴리스 및 Play App Signing 빌드는 다른 해시를 가질 수 있습니다. getHashString(). Generate the hash for the signing key used to distribute the app. Debug, release, and Play App Signing builds can have different hashes.
인증 SMS를 기다리세요
인증 SMS를 기다리는 방법import { AndroidSmsRetriever } from '@capgo/capacitor-android-sms-retriever';
const received = await AndroidSmsRetriever.addListener('smsReceived', ({ message }) => { const code = message.match(/\b\d{6}\b/)?.[0]; console.log('Verification code:', code);});
const timeout = await AndroidSmsRetriever.addListener('smsRetrieverTimeout', () => { console.log('SMS Retriever timed out');});
const errors = await AndroidSmsRetriever.addListener('smsRetrieverError', ({ message }) => { console.error('SMS Retriever error:', message);});
await AndroidSmsRetriever.startWatch();
// Remove listeners when the verification flow is done.await received.remove();await timeout.remove();await errors.remove();await AndroidSmsRetriever.stopWatch();앱 해시 가져오기
Section titled “앱 해시 가져오기”const { hash } = await AndroidSmsRetriever.getHashString();console.log(hash);인증 SMS에 이 해시를 백엔드에서 보낸 인증 SMS의 끝에 붙여넣으세요.
전화번호 힌트 요청
Section titled “전화번호 힌트 요청”const { phoneNumber } = await AndroidSmsRetriever.getPhoneNumber();console.log(phoneNumber);사용자가 선택한 전화번호를 반환하는 native Phone Number Hint UI를 보여주고 있습니다.
예제 SMS
예제 SMS<#> 123456 is your verification code.FA+9qCX9VSuGetting Started
Getting Started
Getting StartedGetting Started Getting Started Getting Started Using @capgo/capacitor-android-sms-retriever native 기능을 사용하는 @capgo/capacitor-android-sms-retriever에 대해 Capgo 플러그인 디렉토리 Capgo 플러그인 디렉토리에서 제품 워크플로우에 대해 Capacitor 플러그인들, Capgo Capacitor 플러그인들, Capgo의 구현 세부사항에 대해 플러그인을 추가하거나 업데이트 플러그인을 추가하거나 업데이트하는 구현 세부사항, 그리고 아이오닉 엔터프라이즈 플러그인 대체 아이오닉 엔터프라이즈 플러그인 대체의 제품 워크플로우에 대해