メインコンテンツにジャンプ

Getting Started

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

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

インライン インストールの開始フローのオプション

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

インライン インストールの開始フローの結果

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 がアップストリームで変更された場合。

Getting Started から続けてください

「Getting Started」から続けてください

あなたが「を使用している場合 「を使用してください ダッシュボードとAPIの操作を計画するには Using @capgo/capacitor-android-inline-install native capabilityのために@capgo/capacitor-android-inline-install native capabilityのために@API/__CAPGO_KEEP_1__-android-inline-installの APIの概要 __CAPGO_KEEP_0__の概要の実装詳細 「の導入 API Keys APIのキー デバイス デバイスの実装詳細について