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-native-market`
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/native-market/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.
설치
설치npm install @capgo/capacitor-native-marketnpx cap syncimport
importimport { NativeMarket } from '@capgo/capacitor-native-market';API 개요
API 개요 제목openStoreListing
__CAPGO_KEEP_0__ 개요 제목앱 목록 페이지를 Play Store (Android) 또는 App Store (iOS)에서 열기.
import { NativeMarket } from '@capgo/capacitor-native-market';
// Open app in storeawait NativeMarket.openStoreListing({ appId: 'com.example.app'});
// Open app in specific country store (iOS only)await NativeMarket.openStoreListing({ appId: 'com.example.app', country: 'IT'});openDevPage
__CAPGO_KEEP_0__ 개발자 페이지 열기__CAPGO_KEEP_0__ 클립보드 복사
import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.openDevPage({ devId: 'Google+LLC'});openCollection
__CAPGO_KEEP_0__ 클립보드 복사__CAPGO_KEEP_0__ 탑 차트 열기
import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.openCollection({ name: 'featured'});openEditorChoicePage
openEditorChoicePagePlay Store의 Editor의 선택 페이지로 연결합니다. (Android만)
import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.openEditorChoicePage({ editorChoice: 'editorial_fitness_apps_us'});search
searchPlay Store에서 사용자 지정 검색어로 검색합니다. (Android만)
import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.search({ terms: 'fitness apps'});Source Of Truth
이 페이지는 플러그인의public __CAPGO_KEEP_0__이 업스트림에서 변경될 때 다시 싱크를 실행합니다. src/definitions.ts. Re-run the sync when the public API changes upstream.
Getting Started에서 계속
Source Of TruthIf you are using __CAPGO_KEEP_0__ Getting Started API을 위한 대시보드와 API 연산을 계획하는 데 도움이 되는 Using @capgo/capacitor-native-market for the native capability in Using @capgo/capacitor-native-market, for the native capability in Using @API/__CAPGO_KEEP_1__-native-market API 개요 for the implementation detail in __CAPGO_KEEP_0__ Overview 소개 API Keys API 키 for the implementation detail in __CAPGO_KEEP_0__ Keys, and __CAPGO_KEEP_0__의 구현 세부 사항입니다.