Skip to content

Getting Started

설치, 동기화, 소스 마크다운 가이드를 포함합니다.

설치
설치 제목
bun add @capgo/capacitor-android-inline-install
bunx cap sync

클립보드에 복사하기

Section titled “Import”
import { AndroidInlineInstall } from '@capgo/capacitor-android-inline-install';

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');
}
}

__CAPGO_KEEP_0__ 변경 사항이 업스트림에서 변경될 때마다 다시 싱크를 실행하세요.

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.tsAPI가 업스트림에서 변경될 때 다시 싱크를 실행하세요.

Getting Started에서 계속하기

Getting Started에서 계속하기 섹션

__CAPGO_KEEP_0__가 업스트림에서 변경될 때 다시 싱크를 실행하세요. 시작하기 API 대시보드와 API 운영을 계획하고 연결하는 방법 @capgo/capacitor-android-inline-install을 사용하여 @capgo/capacitor-android-inline-install을 사용하여 네이티브 기능을 구현하는 방법 API 개요 API 개요에서 구현 세부 정보 소개 소개에서 구현 세부 정보 API 키 API 키에서 구현 세부 정보 장치 장치에서 구현 세부 정보