내용으로 건너뛰기

시작하기

GitHub

Capgo의 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';

API 개요

API 개요

startInlineInstall

startInlineInstall

구글 플레이 오버레이를 사용하여 인라인 설치 흐름을 시작합니다.

주의: 인라인 설치를 사용하려면 적격한 앱만 사용할 수 있습니다. 자세한 내용은 다음과 같습니다: 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;
}

실질적 출처

섹션: 실질적 출처

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

다음 단계로 진행하기

다음 단계로 진행하기

Capgo를 사용 중이라면 Getting Started Capgo를 사용하여 대시보드와 API 연산을 계획하고 싶다면 API와 연결하세요 Capgo를 사용하여 @capgo/capacitor-android-inline-install Capgo를 사용하여 @capgo/capacitor-android-inline-install의 네이티브 기능을 사용하는 방법 API 개요 API 개요의 구현 세부 정보 소개 소개의 구현 세부 정보 API 키 구현 세부 정보에 대한 API 키에 대해 기기 구현 세부 정보에 대한 기기에 대해