Démarrage
Copiez un prompt de configuration avec les étapes d'installation et le guide Markdown complet pour ce plugin.
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.
Installer
Section intitulée « Installer »bun add @capgo/capacitor-mock-location-detectorbunx cap syncImporter
Section intitulée « Importer »import { MockLocationDetector } from '@capgo/capacitor-mock-location-detector';Flux recommandé
Section intitulée « Flux recommandé »const result = await MockLocationDetector.analyze({ requestLocationSample: true, minDetectedChecks: 1,});
if (result.isSimulated) { console.warn('Possible GPS spoofing detected', result.riskScore, result.checks);}Effectuer une vérification unique
Section intitulée « Effectuer une vérification unique »const mockFlag = await MockLocationDetector.runCheck({ check: 'system_mock_flag',});Surveiller en continu
Section intitulée « Surveiller en continu »await MockLocationDetector.addListener('locationIntegrityChanged', (event) => { console.log('Integrity changed', event.confidence, event.checks);});
await MockLocationDetector.startMonitoring({ intervalMs: 30000 });Guidage des utilisateurs vers les paramètres
Section intitulée « Guidage des utilisateurs vers les paramètres »Copier dans le presse-papier
await MockLocationDetector.openDeveloperSettings();Configuration de la plateforme
Section intitulée « Configuration de la plateforme »- iOS : Configuration iOS
- Android : Configuration Android
Source de Vérité
Section intitulée « Source de Vérité »Cette page suit les instructions du plugin. src/definitions.tsRe-générez docgen upstream lorsque la version publique API change.