Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android/QR-Code: Is it possible open directly the Google Play Store using a QR Code?

I have published a simple application on the Google Play Store. Now i need to create a qr-code that when is read open directly the page of my application on the Play Store. Is it possible do it? In fact actually, i have created a qr-code for test, but everytime the device read it, a little box appear and ask me if i want open the link with Chrome, Browser or Play Store. Can i avoid the show of this box and go directly to the Play Store?

Thanks

like image 386
Hieicker Avatar asked Aug 19 '13 10:08

Hieicker


1 Answers

Make a QR code out of the link

market://details?id=com.example.your.package

A normal http:// URI can be processed by multiple apps. However, the market:// scheme is used by Google Play, and normal browsers will not respond to it

like image 148
Raghav Sood Avatar answered Sep 29 '22 07:09

Raghav Sood