Drop-in replacement with 10x faster performance, gaming-focused attribution, and better analytics than Firebase ever provided.
No coding required! Migrate using the BoostOps dashboard
For marketing teams & non-developers
For developers & technical teams
Sign up for BoostOps and connect your existing Firebase project to import your data.
What you'll get after import:
yourgame.links.boostops.io
If you have existing Firebase links, gather their information for recreation.
💡 Tip: Firebase doesn't provide an export feature, but you can recreate your most important links quickly in the BoostOps dashboard.
Use the simple web interface to create your dynamic links.
1. Enter Target URL
Where users go (your website/app)
2. Set App Store URLs
iOS & Android store links
3. Add Campaign Info
Name, source, medium
4. Get Short URL
Ready to use instantly
🚀 Pro Tip: The BoostOps dashboard is more intuitive than Firebase Console and provides gaming-specific options like revenue tracking and cross-promotion.
Replace your old Firebase links with new BoostOps links in your marketing campaigns.
If you're creating links programmatically in your app, here's the code migration:
// Firebase Dynamic Links
const link = await firebase
.dynamicLinks()
.buildShortLink({
link: 'https://example.com/game',
domainUriPrefix: 'https://example.page.link',
ios: { bundleId: 'com.example.game' },
android: {
packageName: 'com.example.game'
}
});
// BoostOps Dynamic Links
const response = await fetch('https://api.boostops.io/v1/links', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
url: 'https://example.com/game',
iosUrl: 'https://apps.apple.com/app/id123456',
androidUrl: 'https://play.google.com/store/apps/details?id=com.example.game'
})
});
const { shortUrl } = await response.json();
Migrate now and enjoy better performance, gaming-focused analytics, and peace of mind.
Need help? Our team will personally assist with your migration at no extra cost.