Getting Started
설치
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-in-app-review`
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/in-app-review/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.
설치
설치Capgo의 AI 보조 설치를 사용하여 플러그인을 설치할 수 있습니다. 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-in-app-review` plugin in my project.만약 Manual Setup을 선호한다면, 플러그인을 설치하기 위해 다음 명령어를 실행하고 아래에 플랫폼에 따라 설명된 지침을 따르세요:
bun add @capgo/capacitor-in-app-reviewbunx cap syncimport
Section titled “Import”import { CapgoInAppReview } from '@capgo/capacitor-in-app-review';API 개요
Section titled “API 개요”requestReview
Section titled “requestReview”사용자에게 앱 리뷰를 요청하세요.
This method triggers the native in-app review dialog provided by the platform. iOS에서는 SKStoreReviewController를 사용하고 Android에서는 Play In-App Review API를 사용합니다.
중요한 주의사항:
- 리뷰 대화창이 매번 호출될 때마다 표시되지 않을 수 있습니다. 애플과 구글은 사용자에게 얼마나 자주 리뷰를 요청할 수 있는지에 대한 지침을 제공합니다.
- 사용자가 리뷰를 볼 수 있는 보장이 없습니다.
- 이 메소드는 대화창이 표시되지 않았더라도 성공적으로 해결됩니다.
- 이 메소드를 사용자 동작에 대한 응답으로 호출하지 마세요. 대신 앱의 사용자 흐름의 자연스러운 지점에서 호출하세요.
import { CapgoInAppReview } from '@capgo/capacitor-in-app-review';
// Request a review at an appropriate moment in your appawait CapgoInAppReview.requestReview();실질적인 출처
실질적인 출처 섹션이 페이지는 플러그인의 src/definitions.tsAPI의 공개 버전이 업스트림에서 변경될 때 다시 싱크를 실행하세요.
시작하기
시작하기 섹션이 플러그인을 사용하는 경우 시작하기 스토어 승인 및 배포를 계획하는 경우 시작하기를 사용하고 native capability을 위해 @capgo/capacitor-in-app-review Using @capgo/capacitor-in-app-review @capgo/capacitor-in-app-review for the implementation detail in @capgo/capacitor-in-app-review, @capgo/capacitor-native-market for the implementation detail in @capgo/capacitor-native-market, Using @capgo/capacitor-native-market for the native capability in Using @capgo/capacitor-native-market, and Capacitor OTA 업데이트: 앱 스토어 승인 안내서 for the practical context in Capacitor OTA Updates: App Store Approval Guide.