スタート
このプラグインのインストールステップとフルマークダウンガイドまでの全てのステップを含む設定プロンプトをコピーする
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-mock-location-detector`
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/mock-location-detector/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.
インストール
「インストール」のセクションbun add @capgo/capacitor-mock-location-detectorbunx cap syncインポート
「インポート」のセクションimport { MockLocationDetector } from '@capgo/capacitor-mock-location-detector';推奨フロー
「推奨フロー」のセクションconst result = await MockLocationDetector.analyze({ requestLocationSample: true, minDetectedChecks: 1,});
if (result.isSimulated) { console.warn('Possible GPS spoofing detected', result.riskScore, result.checks);}__CAPGO_KEEP_1__
__CAPGO_KEEP_2__const mockFlag = await MockLocationDetector.runCheck({ check: 'system_mock_flag',});__CAPGO_KEEP_3__
__CAPGO_KEEP_4__await MockLocationDetector.addListener('locationIntegrityChanged', (event) => { console.log('Integrity changed', event.confidence, event.checks);});
await MockLocationDetector.startMonitoring({ intervalMs: 30000 });__CAPGO_KEEP_5__
__CAPGO_KEEP_6____CAPGO_KEEP_7__
await MockLocationDetector.openDeveloperSettings();__CAPGO_KEEP_8__
プラットフォームのセットアップ- iOS: iOSのセットアップ
- Android: Androidのセットアップ
真実の源
真実の源のセクションThis page follows the plugin’s src/definitions.tsパブリックのAPIが変更されたときに、上流のdocgenを再実行してください。