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.
설치
설치 섹션 제목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-native-market` plugin in my project.복사
npm install @capgo/capacitor-native-marketnpx cap syncimport { NativeMarket } from '@capgo/capacitor-native-market';API 개요
API 개요 제목openStoreListing
openStoreListing 제목Play Store (안드로이드) 또는 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
openDevPage 제목개발자의 페이지로 직접 링크합니다. (안드로이드만)
import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.openDevPage({ devId: 'Google+LLC'});openCollection
openCollection 제목Play Store에서 사용자에게 컬렉션 또는 탑 차트를 연결해줍니다. (안드로이드만)
import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.openCollection({ name: 'featured'});openEditorChoicePage
Section titled “openEditorChoicePage”Play Store 에서 Editor의 선택 페이지로 연결합니다. Android만 지원합니다.
import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.openEditorChoicePage({ editorChoice: 'editorial_fitness_apps_us'});search
Section titled “search”Play Store에서 사용자 지정 검색어로 검색합니다. Android만 지원합니다.
import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.search({ terms: 'fitness apps'});진실의 근원
Section titled “진실의 근원”이 페이지는 플러그인의 src/definitions.ts. Re-run the sync when the public API changes upstream.
Getting Started에서 계속
Section titled “Getting Started에서 계속”만약에 __CAPGO_KEEP_0__을 사용하고 있다면 Getting Started API과 연동하여 대시보드 및 API 운영을 계획하세요. Using @capgo/capacitor-native-market Using @capgo/capacitor-native-market에서 capgo의 네이티브 기능을 사용하기 위해 API Overview API Overview에서 API의 구현 세부 정보를 확인하세요. Introduction Introduction에서 __CAPGO_KEEP_0__의 구현 세부 정보를 확인하세요. API Keys API Keys에서 API의 구현 세부 정보를 확인하세요. Devices __CAPGO_KEEP_0__ 구현 세부 사항입니다.