Skip to content

Navigation

FRVR.navigation centralizes “leave the game” flows — opening store pages, external URLs, privacy policies — in a way that respects what the current channel allows.

if (FRVR.navigation.canNavigate()) {
  try {
    FRVR.navigation.navigate('https://example.com/privacy');
  } catch (err) {
    // channel rejected the URL (e.g. off‑domain)
  }
}

Promote your other channels’ apps without hard‑coding store URLs:

if (FRVR.navigation.canOpenChannelAppStore()) {
  FRVR.navigation.openChannelAppStore();
}
FRVR.config.navigation = {
  gameId: 'my-game',       // defaults to top‑level gameId
  // …channel‑specific
};