Getting Started
このプラグインの設定プロンプトとインストールステップ、そしてフルマークダウンガイドを含むコピー可能な設定プロンプトをコピーしてください。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-admob`
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/admob/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-admob` plugin in my project.Manual Setupを使用する場合は、以下のコマンドを実行してプラグインをインストールし、以下のプラットフォーム固有の指示に従ってください。
bun add @capgo/capacitor-admobbunx cap syncインポート
「インポート」のセクションimport { AdMob } from '@capgo/capacitor-admob';APIの概要
「APIの概要」のセクションstart
「start」のセクションSDKを使用してAdMobを初期化して開始します。
import { AdMob } from '@capgo/capacitor-admob';
await AdMob.start();configure
「configure」のセクションAdMobの設定を構成します。
import { AdMob } from '@capgo/capacitor-admob';
await AdMob.configure({ appMuted: false, appVolume: 0.5});configRequest
「configRequest」セクション広告要求設定を構成します。
import { AdMob } from '@capgo/capacitor-admob';
await AdMob.configRequest({ maxAdContentRating: MaxAdContentRating.PG, tagForChildDirectedTreatment: true, testDeviceIds: ['test-device-id']});adCreate
「adCreate」セクション新しい広告インスタンスを作成します。
import { AdMob } from '@capgo/capacitor-admob';
await AdMob.adCreate({ adUnitId: 'ca-app-pub-3940256099942544/1033173712'});adIsLoaded
「adIsLoaded」セクション広告が読み込まれて表示可能かどうかを確認します。
import { AdMob } from '@capgo/capacitor-admob';
const isLoaded = await AdMob.adIsLoaded({ id: 1 });if (isLoaded) { await AdMob.adShow({ id: 1 });}adLoad
「adLoad」セクション広告を読み込みます。
import { AdMob } from '@capgo/capacitor-admob';
await AdMob.adLoad({ id: 1 });adShow
セクション「adShow」ロードされた広告を表示します。
import { AdMob } from '@capgo/capacitor-admob';
await AdMob.adShow({ id: 1 });adHide
セクション「adHide」現在表示されている広告を非表示にします。
import { AdMob } from '@capgo/capacitor-admob';
await AdMob.adHide({ id: 1 });trackingAuthorizationStatus
セクション「trackingAuthorizationStatus」現在のトラッキング承認状態を取得します (iOS 限定)。
import { AdMob } from '@capgo/capacitor-admob';
const { status } = await AdMob.trackingAuthorizationStatus();if (status === TrackingAuthorizationStatus.notDetermined) { await AdMob.requestTrackingAuthorization();}requestTrackingAuthorization
セクション「requestTrackingAuthorization」ユーザーからトラッキング承認を求めます (iOS 限定)。
import { AdMob } from '@capgo/capacitor-admob';
const { status } = await AdMob.requestTrackingAuthorization();console.log('User tracking status:', status);型の参照
「型の参照」のセクションAdMobConfig
「AdMobConfig」のセクションAdMobの設定オプション
export type AdMobConfig = { /** Whether the app should be muted */ appMuted?: boolean; /** The app volume (0.0 to 1.0) */ appVolume?: number;};RequestConfig
「リクエストの設定」のセクション広告のリクエストの設定
export type RequestConfig = { /** Maximum ad content rating */ maxAdContentRating?: MaxAdContentRating; /** Whether to use the same app key */ sameAppKey?: boolean; /** Tag for child-directed treatment (true, false, or null for unspecified) */ tagForChildDirectedTreatment?: boolean | null; /** Tag for under age of consent (true, false, or null for unspecified) */ tagForUnderAgeOfConsent?: boolean | null; /** Array of test device IDs */ testDeviceIds?: string[];};MobileAdOptions
「モバイル広告のオプション」のセクションモバイル広告の基本オプション
export type MobileAdOptions = { /** The ad unit ID from AdMob */ adUnitId: string;};TrackingAuthorizationStatus
トラッキング認可状態iOS App Tracking Transparencyのトラッキング認可状態
export enum TrackingAuthorizationStatus { /** User has not yet received an authorization request */ notDetermined = 0, /** User restricted, device is unable to provide authorization */ restricted = 1, /** User denied authorization */ denied = 2, /** User authorized access */ authorized = 3,}MaxAdContentRating
最大広告コンテンツレーティング最大広告コンテンツレーティングを使用してコンテンツレーティングに基づいて広告を制限します。
export enum MaxAdContentRating { /** General Audiences */ G = 'G', /** Mature Audiences */ MA = 'MA', /** Parental Guidance */ PG = 'PG', /** Teen */ T = 'T', /** Unspecified rating */ UNSPECIFIED = '',}ソースオブトゥース
このページはプラグインのパブリック__CAPGO_KEEP_0__がアップストリームで変更されたときに再度同期してください。 src/definitions.ts. Re-run the sync when the public API changes upstream.
続けてGetting Started
section titled "TrackingAuthorizationStatus"Capgoを使用している場合 Getting Started ダッシュボードとAPIの計画と操作を行うには、APIに接続してください。 Capacitorを使用して@capgo/capacitor-admob Capacitorのネイティブ機能を使用するにはCapacitorを使用して@capgo/capacitor-admob APIの概要 APIの実装詳細 Capgoの概要 __CAPGO_KEEP_0__の実装詳細 API Keys for the implementation detail in API Keys, and Capgoのキーの実装詳細 デバイスの実装詳細について。