메뉴로 바로가기

Getting Started

GitHub

설치

설치

AI-Assisted Setup을 사용하여 플러그인을 설치할 수 있습니다. 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-install
bunx cap sync
import { AndroidInlineInstall } from '@capgo/capacitor-android-inline-install';

Google Play overlay를 사용하여 인라인 설치 흐름을 시작하세요.

Note: Only eligible apps can use Inline Install. See: 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

Inline Install 시작 옵션

Inline Install 시작 옵션

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

Inline Install 시작 결과

Inline Install 시작 결과

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

이 페이지는 플러그인의 src/definitions.ts. 업스트림에서 API가 변경되었을 때 다시 싱크를 실행하세요.

Getting Started

Getting Started

이 플러그인을 사용 중이라면 Getting Started 계획 대시보드 및 API 연산을 위해 연결하세요. Using @capgo/capacitor-android-inline-install Using @capgo/capacitor-android-inline-install API Overview API Overview __CAPGO_KEEP_0__ Introduction API Keys API Keys Capgo의 __CAPGO_KEEP_0__ Keys 구현 세부 사항 Devices