Manage AdMob Consent
Your advertising preferences and AdMob consent are managed securely within the Rail Dispatch application.
How to Manage Your Ad Consent:
- Open the Rail Dispatch app on your device
- Go to Settings menu
- Select Privacy & Ads
- Tap Manage Ad Consent
- Choose your preference (personalized or non-personalized ads)
- Your choice takes effect immediately
Learn More:
For details about what data we collect and how we use it, please read our Privacy Policy.
// Form is hidden - consent is managed in the app });
});
copyBtn.addEventListener('click', async function () {
if (!form.reportValidity()) {
return;
}
try {
await navigator.clipboard.writeText(buildMessage());
statusMsg.textContent = 'Message copied. You can paste it into your email client.';
} catch (error) {
statusMsg.textContent = 'Copy failed in this browser. Please select and copy the message manually.';
}
});
For details about what data we collect and how we use it, please read our Privacy Policy.