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-android-inline-install`
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-inline-install/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-assisted 설정을 사용하여 플러그인을 설치할 수 있습니다. 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-inline-install` plugin in my project.만약 Manual Setup을 선호한다면, 플러그인을 설치하기 위해 다음 명령어를 실행하고 아래의 플랫폼별 지침을 따르세요:
bun add @capgo/capacitor-android-inline-installbunx cap sync__CAPGO_KEEP_0__
임포트import { AndroidInlineInstall } from '@capgo/capacitor-android-inline-install';startInlineInstall
__CAPGO_KEEP_0__ 시작Google Play overlay를 사용하여 인라인 설치 흐름을 시작합니다.
적격한 앱만 인라인 설치를 사용할 수 있습니다. 자세한 내용은: https://play.google.com/console/about/guides/premium-growth-tools/
import { AndroidInlineInstall } from '@capgo/capacitor-android-inline-install';
const result = await AndroidInlineInstall.startInlineInstall({ id: 'com.example.app', referrer: 'my-referrer', overlay: true, fallback: true});
if (result.started) { console.log('Install flow started'); if (result.fallbackUsed) { console.log('Using fallback Play Store link'); }}타입 참조
타입 참조StartInlineInstallOptions
StartInlineInstallOptions인라인 설치 흐름을 시작하는 옵션
export interface StartInlineInstallOptions { /** Package name of the app to be installed (target app). */ id: string; /** Referrer string to pass to Play. Optional but recommended. */ referrer?: string; /** * Package name of your app (caller). Defaults to the current app package * if omitted. */ callerId?: string; /** Optional Custom Store Listing ID. */ csl_id?: string; /** Whether to request the Play overlay. Defaults to true. */ overlay?: boolean; /** If true, falls back to full Play Store deep link when overlay unavailable. Defaults to true. */ fallback?: boolean;}StartInlineInstallResult
StartInlineInstallResult인라인 설치 흐름의 결과
export interface StartInlineInstallResult { /** True when the inline install intent has been started. */ started: boolean; /** True if a fallback deep link was used instead of inline overlay. */ fallbackUsed?: boolean;}Source Of Truth
이 페이지는 플러그인의공개 __CAPGO_KEEP_0__이 업스트림에서 변경될 때 다시 동기화하세요. src/definitions.ts. Re-run the sync when the public API changes upstream.
Source Of Truth
이 페이지는 플러그인의If you are using Getting Started dashboard와 API 운영을 계획하고 연결하세요. Using @capgo/capacitor-android-inline-install native 기능을 사용하기 위해 @capgo/capacitor-android-inline-install을 사용하세요. API 개요 API Overview에서 구현 세부 정보를 참조하세요. 소개 소개에서 구현 세부 정보를 참조하세요. API 키 API Keys에서 구현 세부 정보를 참조하세요. 기기 __CAPGO_KEEP_0__의 구현 세부 사항입니다.