Create a QR code for an application on the market

How can I create a QR code for my application in the Android Market?

+5
source share
5 answers

What really happens when you scan the qr code and you get to the Android market is that the qr code just represents the URL and the default browser for Android opens and then recognizes the URL as a market link and redirects you to the application on the market.

You should be able to use the site, for example:

http://qrcode.kaywa.com/

To build qrcode for you. I am not associated with this site. You entered the Android Market URL in the format

http://market.android.com/search?q=pname:<insert your AndroidManifest package here>
+4
source

, http://qrcode.kaywa.com/ URL. : market://details? Id = com.company.product

+4

Android Market . URL- id paramater (, "com.layar" ) URL :

https://market.android.com/details?id=com.layar&feature=search_result#?t=W251bGwsMSwyLDEsImNvbS5sYXlhciJd

, QR- Market Market Android API Google Chart API

enter image description here

<img src="http://chart.apis.google.com/chart?cht=qr&chs=150x150&chl=market://search?q=pname:com.layar" />
+2

API Google (http://code.google.com/apis/chart/image/docs/gallery/qr_codes.html).

:

https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl=http://stackoverflow.com&choe=UTF-8

+1

On the other hand, look for your application on AndroidZoom.com or Androlib.com (or on any other such bots), they may already have a QR code created for your application.

Basically, they seem to create an Android Market application library, so if your application is there, it will also have a QR code.

0
source

All Articles