I have an app which has versions for both Android and iPhone. So I have two URL-s for them (Market and AppStore), but I do not want to add two different QR codes to the homepage. Is there a way (online service I'd expect) to have single URL for both markets, which will detect user device and will forward immediately to suitable application version? Programmatically looks really trivial, but perhaps someone has already solved the issue.
UPDATE: It seems I had to create the service myself. Feel free to try and use it also: http://qrappdownload.appspot.com/ . You can give two URL-s and it generates QR core for URL which is universal for the two biggest platforms. The universal URL is resolved by same service, based on mobile user agent (just whether it consists Apple or Android string is checked). Downside is that QR code has to be quite large, as the URL has to include both appstore URLs and is therefore pretty long. Maybe you can shorten the URL with some URL shortening service, have not tried it.
Yet another option is to use http://onelink.to which is an easy to use service for the same purpose.
There're already a couple of better QR Code generator services out there for this purpose. The majority is pretty expensive without too much options or buggy.
I'd suggest a free QRcode Generator like http://uniq.cd
It provides single QR Codes that are
I hope this helps.
A QR code is just a link / URL, soo point to a URL on your site and use PHP to determines if the user is using Android or iPhone. Then do a PHP header location to the iPhone app URL if it is iPhone, or Android app if it is Android.
Here is the PHP code:
AutoFwd
Had well over 20,000 people use it already and is free. (Disclaimer my company made it!)
www.AutoFwd.com
e.g. www.AutoFwd.com/angrybirds
It allows you to specify for iOS/Android/Blackberry/Win/Mac/Linux and some others. Also has a default page and statistic tracking with QR generation.
It also allows potential downloaders to enter their email address if their platform isn't supported by your app yet, when you later add the app for that platform they will receive a notification it's been added.
QR codes can contain any text. The convention for their use as a link to the Web is to contain one URL. Most QR reader apps will then load the webpage referenced by the URL embedded in the QR code.
There is no way to embed information in a QR code that directly links to two different URLs when read by any QR code reader. A custom QR code reader could parse a QR code with two URLs and decide which URL to follow, but you'll have to figure out a way to get your custom QR reader to your customers.
The functionality you're looking for can reside at the URL in the QR code. The embedded URL could link to a webpage that checks user agents and redirects appropriately. If the Safari on iOS user agent is detected, redirect to Apple's App Store. An Android user agent would be redirected to an appropriate app store. I would set all other user agents to go to a product page with links to both stores.
If I was doing this, I would investigate sending all users to a product page. The opportunity to engage in further marketing of the product, sharing more information with the potential customer may result in better sales. I'd set up some A-B testing to see which is better.
Another option would be to use OmniQRCode.com. It's a service that lets you use a single QR Code. When a smartphone scans the QR Code the service detects and redirects the smartphone to the relevant app market. It also groks variations like Android 1.6 vs Android 2.2.