NFC __CAPGO_KEEP_0__ リポジトリ
このプラグインのインストール手順と全体のマークダウン ガイドを含むセットアップ コマンドをコピーできます。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-nfc`
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/nfc/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 アシスト セットアップを使用してプラグインをインストールできます。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-nfc` plugin in my project.Manual Setupを使用する場合は、プラットフォーム固有の指示に従うために、以下のコマンドを実行してプラグインをインストールしてください:
bun add @capgo/capacitor-nfcbunx cap syncインポート
セクション「インポート」import { CapacitorNfc } from '@capgo/capacitor-nfc';APIの概要
セクション「APIの概要」startScanning
startScanningNFCタグを検出する準備ができました。
import { CapacitorNfc } from '@capgo/capacitor-nfc';
await CapacitorNfc.startScanning();stopScanning
stopScanningNFCスキャニングを停止します。
import { CapacitorNfc } from '@capgo/capacitor-nfc';
await CapacitorNfc.stopScanning();write
write最後に検出されたタグにNDEFレコードを書き込みます。
import { CapacitorNfc } from '@capgo/capacitor-nfc';
await CapacitorNfc.write({} as WriteTagOptions);erase
erase最後に検出されたタグを空のNDEFメッセージで消去します。
import { CapacitorNfc } from '@capgo/capacitor-nfc';
await CapacitorNfc.erase();makeReadOnly
「makeReadOnly」セクション最後に発見されたタグを読み取り専用にします。
import { CapacitorNfc } from '@capgo/capacitor-nfc';
await CapacitorNfc.makeReadOnly();share
「share」セクションAndroid専用のペア間通信を使用して、NDEF メッセージを別のデバイスに共有します。
import { CapacitorNfc } from '@capgo/capacitor-nfc';
await CapacitorNfc.share({} as ShareTagOptions);unshare
「unshare」セクション以前提供されたNDEFメッセージの共有を停止します (Android専用)。
import { CapacitorNfc } from '@capgo/capacitor-nfc';
await CapacitorNfc.unshare();getStatus
「getStatus」セクション現在のNFCアダプタの状態を取得します。
import { CapacitorNfc } from '@capgo/capacitor-nfc';
await CapacitorNfc.getStatus();showSettings
showSettingsNFCを有効にする設定ページを開きます。
import { CapacitorNfc } from '@capgo/capacitor-nfc';
await CapacitorNfc.showSettings();isSupported
isSupportedNFCハードウェアのサポートを確認します。
戻り値 true デバイスにNFCハードウェアが搭載されている場合、NFCが有効かどうかに関係なく、trueを返します。デバイスにNFCハードウェアが搭載されていない場合、falseを返します。 false このメソッドを使用して、NFC機能を表示するようにアプリのUIに指示します。NFCが現在有効かどうかを確認するには、
コピー getStatus().
import { CapacitorNfc } from '@capgo/capacitor-nfc';
await CapacitorNfc.isSupported();タイプ リファレンス
showSettingsStartScanningOptions
「StartScanningOptions」セクション__CAPGO_KEEP_0__の動作を制御するオプション
export interface StartScanningOptions { /** * iOS-only: closes the NFC session automatically after the first successful tag read. * Defaults to `true`. */ invalidateAfterFirstRead?: boolean; /** * iOS-only: custom message displayed in the NFC system sheet while scanning. */ alertMessage?: string; /** * iOS-only: session type to use for NFC scanning. * - `'ndef'`: Uses NFCNDEFReaderSession (default). Only detects NDEF-formatted tags. * - `'tag'`: Uses NFCTagReaderSession. Detects both NDEF and non-NDEF tags (e.g., raw MIFARE tags). * Allows reading UID from unformatted tags. * **Requires** the `Near Field Communication Tag Reader Session Formats` entitlement * in your app with the `TAG` format included. Without it the session will fail to * start and the promise will reject with a `NO_NFC` error code. * Defaults to `'ndef'` for backward compatibility. */ iosSessionType?: 'ndef' | 'tag'; /** * Android-only: raw flags passed to `NfcAdapter.enableReaderMode`. * Defaults to enabling all tag types with skipping NDEF checks. */ androidReaderModeFlags?: number;}WriteTagOptions
「WriteTagOptions」セクション__CAPGO_KEEP_0__の現在のタグにNDEFメッセージを書き込む際に使用されるオプション
export interface WriteTagOptions { /** * Array of records that compose the NDEF message to be written. */ records: NdefRecord[]; /** * When `true`, the plugin attempts to format NDEF-formattable tags before writing. * Defaults to `true`. */ allowFormat?: boolean;}ShareTagOptions
「ShareTagOptions」セクション__CAPGO_KEEP_0__のNDEFメッセージをAndroid Beam / P2Pモードで他のデバイスに共有する際に使用されるオプション
export interface ShareTagOptions { records: NdefRecord[];}NfcStatus
「NfcStatus」セクション__CAPGO_KEEP_0__によって返されるNFCアダプタの状態
export type NfcStatus = 'NFC_OK' | 'NO_NFC' | 'NFC_DISABLED' | 'NDEF_PUSH_DISABLED';NfcEvent
NfcEventプラグインによって送信される一般的なNFC発見イベント。
export interface NfcEvent { type: NfcEventType; tag: NfcTag;}NfcStateChangeEvent
NfcStateChangeEventNFCアダプタの可用性が変更されたときに発行されるイベント。
export interface NfcStateChangeEvent { status: NfcStatus; enabled: boolean;}NdefRecord
NdefRecordNDEFレコードを表すJSON構造。
export interface NdefRecord { /** * Type Name Format identifier. */ tnf: number; /** * Type field expressed as an array of byte values. */ type: number[]; /** * Record identifier expressed as an array of byte values. */ id: number[]; /** * Raw payload expressed as an array of byte values. */ payload: number[];}NfcEventType
NfcEventType発見されたNFCの種類を表すイベントタイプ。
export type NfcEventType = 'tag' | 'ndef' | 'ndef-mime' | 'ndef-formatable';NfcTag
Nfcタグネイティブレイヤーから返されるフルタグ情報の表現
export interface NfcTag { /** * Raw identifier bytes for the tag. */ id?: number[]; /** * List of Android tech strings (e.g. `android.nfc.tech.Ndef`). */ techTypes?: string[]; /** * Human readable tag type when available (e.g. `NFC Forum Type 2`, `MIFARE Ultralight`). */ type?: string | null; /** * Maximum writable size in bytes for tags that expose NDEF information. */ maxSize?: number | null; /** * Indicates whether the tag can be written to. */ isWritable?: boolean | null; /** * Indicates whether the tag can be permanently locked. */ canMakeReadOnly?: boolean | null; /** * Array of NDEF records discovered on the tag. */ ndefMessage?: NdefRecord[] | null;}真実の源
真実の源このページはプラグインの src/definitions.tsパブリックAPIがアップストリームで変更された場合に再度同期を実行してください。
Getting Startedから続けて
NfcタグGetting Started 計画用ダッシュボードと__CAPGO_KEEP_0__の操作を実行する場合に使用している場合 計画用ダッシュボードとAPIの操作を実行する場合に接続してください Using @capgo/capacitor-nfc for the native capability in Using @capgo/capacitor-nfc API 本試算求 for the implementation detail in API 本試算求 主安一安事 for the implementation detail in 主安一安事 API 台算算求 for the implementation detail in API 台算算求, 和 设置器 for the implementation detail in 设置器.