시작하기
설치 단계 및 이 플러그인의 전체 마크다운 가이드가 포함된 설정 지시문을 복사하세요.
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.
설치
설치 섹션bun add @capgo/capacitor-android-inline-installbunx cap sync수입
수입 섹션import { AndroidInlineInstall } from '@capgo/capacitor-android-inline-install';API 개요
API 개요 섹션startInlineInstall
startInlineInstall 섹션구글 플레이 overlay를 사용하여 인라인 설치 흐름을 시작합니다.
Inline Install은 특정 앱만 사용할 수 있습니다. 자세한 내용은: 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'); }}__CAPGO_KEEP_1__
__CAPGO_KEEP_2__StartInlineInstallOptions
__CAPGO_KEEP_3____CAPGO_KEEP_4__
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
__CAPGO_KEEP_5____CAPGO_KEEP_6__
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;}__CAPGO_KEEP_7__
__CAPGO_KEEP_8____CAPGO_KEEP_9__ src/definitions.ts. upstream API이 변경될 때 다시 동기화 하세요.