There are app on my app store and play store, the android, and ios version I want to generate a single link which redirects the user to app store if it opened in iPhone and redirect to play store if it open in android phone is there a way do this, there is some company doing this.
Two iOS apps currently can not have the same App store name (as entered in iTunes Connect), nor the same bundle ID suffix. They can, however, have the same name under the icon (the Bundle Display Name as entered in the app's plist).
With the help of Flutter It is a mobile UI framework offered by Google that makes it possible to build iOS & Android native apps on both platforms, using a single codebase in a fast and expressive way. Flutter development is carried out using the Dart – a programming language proposed by Google as well.
Step 1: Go to the Apple App Store on your iOS device. Step 2: Search for your app and go to the app page. Step 3: Tap the Share Sheet button on the top right of the screen, then choose Copy Link. You can also share your app with others using available sharing methods, such as Skype.
You should specify, whether you want to achieve this on your website? If yes, you could put up JQuery to detect the device type and based on type of device you can redirect the user to desired URL (play store or app store)
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script>
$(document).ready(function (){
if(navigator.userAgent.toLowerCase().indexOf("android") > -1){
window.location.href = 'https://play.google.com/store/apps/developer?id=WhatsApp+Inc.&hl=en';
}
if(navigator.userAgent.toLowerCase().indexOf("iphone") > -1){
window.location.href = 'https://itunes.apple.com/in/app/whatsapp-messenger/id310633997?mt=8';
}
});
</script>
For more help, Refer: https://forum.webflow.com/t/redirect-to-app-store-or-play-store-if-webflow-website-opened-from-an-iphone-or-an-android-device/21350/6
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With