メニューに進む

Getting Started

__CAPGO_KEEP_7__

__CAPGO_KEEP_8__
__CAPGO_KEEP_9__
bun add @capgo/capacitor-android-inline-install
bunx cap sync
import { AndroidInlineInstall } from '@capgo/capacitor-android-inline-install';

Google Play オーバーレイを使用してインライン インストール フローを開始します。

注: 以下の条件を満たすアプリのみがインライン インストールを使用できます。 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');
}
}

Options for starting an inline install flow.

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

Result of starting an inline install flow.

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

This page is generated from the plugin’s src/definitions.ts. Re-run the sync when the public API changes upstream.

If you are using Getting Started APIの設定とダッシュボードの計画、APIの運用を計画するために接続する @capgo/capacitor-android-inline-installを使用する @capgo/capacitor-android-inline-installを使用することで、ネイティブ機能を使用する APIの概要 APIの概要の実装詳細について 導入 導入の実装詳細について APIのキー APIのキーについての実装詳細について デバイス デバイスの実装詳細について