Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I want to generate Same URL for both android and ios apps on store [closed]

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.

like image 796
Shoaib Anwar Avatar asked Jul 20 '17 06:07

Shoaib Anwar


People also ask

Can 2 apps have the same name App Store?

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).

How can I develop an app for both iOS and Android?

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.

How do I get the URL for App Store?

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.


1 Answers

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

like image 50
Mohnish Hirudkar Avatar answered Sep 24 '22 19:09

Mohnish Hirudkar