メニューに進む

はじめから始める

GitHub

CapgoのAI-Assistedセットアップを使用してプラグインをインストールできます。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.

あなたがマニュアルセットアップを好む場合は、以下のコマンドを実行し、以下のプラットフォーム固有の説明を参照してください:

ターミナルウィンドウ
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;
}

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

__CAPGO_KEEP_0__

真実の源

このページはプラグインから生成されています。 src/definitions.ts. upstream の API が変更された場合に再度 Sync を実行してください。

Getting Started から続けてください

Getting Started から続けてください

あなたが「 Getting Started ダッシュボードと API の計画と実行を目的とした場合、 Using @capgo/capacitor-android-inline-install Using @capgo/capacitor-android-inline-install API の概要 API の実装詳細 概要 概要の実装詳細について API キー API キーの実装詳細について デバイス デバイスの実装詳細について