コンテンツにジャンプ

Getting Started

GitHub

「インストール」のセクション

インストール

AI-Assisted セットアップを使用してプラグインをインストールできます。次のコマンドを使用して、Capgo スキルをAIツールに追加します。

ターミナル画面
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 セットアップを使用する場合は、次のコマンドを実行してプラグインをインストールし、以下のプラットフォーム固有の説明を参照してください。

ターミナル画面
bun add @capgo/capacitor-android-inline-install
bunx cap sync
import { AndroidInlineInstall } from '@capgo/capacitor-android-inline-install';

API の概要

API の概要

startInlineInstall

__CAPGO_KEEP_0__ の概要

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 がアップストリームで変更された場合に、再度 Sync を実行してください。

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

「Getting Started」から続けてください」セクション

「Capgo」を使用している場合、ダッシュボードと __CAPGO_KEEP_0__ のオペレーションを計画するには、を接続してください。 「Getting Started」 「@API/__CAPGO_KEEP_1__-android-inline-install」を使用してください。 「@capgo/capacitor-android-inline-install」 native機能の使用に@capgo/capacitor-android-inline-installを使用します。 APIの概要 APIの実装詳細について 導入 導入の実装詳細について APIのキー 実装詳細についてAPIのキー デバイス 実装詳細についてデバイス