Cross-platform
onestore.link for Ionic / Capacitor apps
Universal app link for Ionic / Capacitor apps.
Ionic with Capacitor wraps a web app in a native shell that ships to App Store and Google Play. Your users โ and your share link โ need to land in the right place. onestore.link is the URL layer that routes iOS, Android, and desktop visitors automatically.
Without onestore.link
- Two store URLs scattered across your Ionic codebase
- Web Share API picking the wrong destination on hybrid
- Manual landing page for desktop users
With onestore.link
- Single URL referenced everywhere in your Ionic app
- Capacitor Share plugin gets a clean universal URL
- Desktop landing page included automatically
How it works with Ionic
No SDK, no rebuild, no native config change. Just a URL.
- 1
Build and submit your Ionic app
`ionic build` then `ionic capacitor sync` and submit to both stores via Xcode / Android Studio (or via Appflow).
- 2
Generate the universal link
Create your slug on onestore.link with both store URLs.
- 3
Use it in Capacitor Share or anywhere
Replace store-specific URLs with `onestore.link/yourapp` in share buttons, ads, social bios.
Optional: share from inside your app
onestore.link is just a URL โ you don't need to add anything to your Ionic app to make it work. If you also want a share button inside your app that sends users the universal link, here's the typical pattern in Ionic:
From an Ionic component:
import { Share } from "@capacitor/share";
const SHARE_URL = "https://onestore.link/myapp";
await Share.share({
title: "My app",
text: "Try my app",
url: SHARE_URL,
});Frequently asked questions
Works with Capacitor 5 / 6?
Yes โ onestore.link is purely a URL. Any Capacitor or Ionic version that can share a URL is supported.
What about iOS Universal Links into the app?
onestore.link sends users to the store to install. If your app is already installed and you want to deep-link into specific in-app screens, configure standard Universal Links / App Links separately.
Ready to add a universal link to your Ionic app?
Free forever, no signup needed. Your first link is live in under a minute.
Create your free link