As part of my current project I've been tasked with collecting URL's for various applications on the official Android Market.
I have a market URL such as:
https://play.google.com/store/apps/details?id=com.endomondo.android.pro
On most devices when I follow a URL such as this I am presented with a pop-up asking if I want to open the link in the browser or with the Market Application.
However on the EVO 4g LTE device when I follow a URL such as this, I receive no prompt and instead it opens immediately in the browser.
Has anyone run across any other devices that do not properly handle market links? And does anyone know if there is some other magical URL I can use that would work properly on this device as well as all of the others? Note: I am not launching an intent here, the user will be clicking on this link outside of my application, so I can't use the market:// uri.
EDIT:
I've found this blurb on the doc page for Publishing on Google Play
Note: If you create a link to open Google Play from your web site and the user selects it from an Android-powered device, the device's Google Play application will resolve the link so the user can use the Google Play application on the device instead of opening the web site. As such, you should always use http://play.google.com/store/apps/... URIs when creating a link on a web page. When pointing to your apps from within your Android app, use the market:// URIs in an intent, so that the Google Play application always opens.
Which seems to indicate that the play app will "intercept" and resolve the link (as it seems to do on every other device).
So this may just be a bug with specific play store apk that is installed on this device.
EDIT 2 :
If I use a market uri the device correctly opens up the play store application. My next hurdle though is I need to be able to get click thru data from these links. The way I was doing it before was shortening them with bit.ly which also tracks the clicks for me. However bit.ly and goo.gl won't let me shorten a market://
uri string. Does anyone happen to know of a URL shortener that has click thru stats, and will allow me to shorten a market://
uri string even though it is not technically a valid URL?