はじめから
このプラグインのセットアッププロンプトとフルマークダウンガイドのインストール手順を含むコピー可能なプロンプトをコピーしてください。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-android-inline-install`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/android-inline-install/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
インストール
「インストール」のセクション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-installbunx cap syncインポート
「インポート」のセクションimport { AndroidInlineInstall } from '@capgo/capacitor-android-inline-install';APIの概要
「APIの概要」のセクションstartInlineInstall
「startInlineInstall」のセクションGoogle Playオーバーレイを使用してインラインインストールフローを開始します。
注意:Inline Installを使用するには、適格のアプリが必要です。詳しくは以下のリンクを参照してください。 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. Re-run the sync when the public API changes upstream.
続けてください
「続けてください」Capgoを使用している場合 Capgo Capgoを使用してダッシュボードとAPIの操作を計画するには、APIに接続してください Capgoの@capgo/capacitor-android-inline-installを使用 Capgoの@capgo/capacitor-android-inline-installのネイティブ機能のために CapgoのAPIの概要 CapgoのAPIの実装の詳細 Capgoの概要 Capgoの実装の詳細 API Keys Capgoの実装詳細についてはAPIキーの詳細を参照してください、 デバイス Capgoの実装詳細についてはデバイスの詳細を参照してください。