How to open Android Application from website link


Hello friends,

Now age is mobile application.so all are not use website. You require open android app from your website. for refer or open app for some reson. i have solution for it. how to open app from website link.

अब उम्र मोबाइल एप्लीकेशन की है। वैसे सभी वेबसाइट का उपयोग नहीं करते हैं। आपको अपनी वेबसाइट से ओपन एंड्रॉइड ऐप की आवश्यकता है। कुछ प्रतिध्वनि के लिए रेफ़र या ओपन ऐप। मेरे पास इसका समाधान है। वेबसाइट लिंक से ऐप कैसे खोलें।

let's check it.
आइए इसे जांचें।

First create link. and in href element we need to add some app details part like package name.
सबसे पहले लिंक बनाएं। और href एलिमेंट में हमें कुछ ऐप डिटेल्स पार्ट जैसे पैकेज नाम जोड़ने की जरूरत है।

href="$link$#Intent;scheme=https;package=$app_package$;end;"

here we replace with your link and package to this $link$ and $app package$
यहां हम आपके लिंक और पैकेज को इस $ लिंक $ और $ ऐप पैकेज $ से बदल देते हैं

After that we add one more thing in anchor link.
उसके बाद हम anchor link में एक और चीज जोड़ते हैं

target="_blank" rel="nofollow noopener" role="link"

This thing is necessary to open app.
यह बात ऐप खोलने के लिए आवश्यक है।

After this we get your link like this.
इसके बाद हमें आपका लिंक इस तरह से मिलता है।

<a href="$link$#Intent;scheme=https;package=$app_package$;end;" target="_blank" rel="nofollow noopener" role="link" >Click here for open app</a>

Comments