We have an app that handles a custom URL scheme (vstream://). When someone comes to a web page that has some vstream:// content, we need to redirect them to the store if they don't have our app installed.

In iOS, we do this:

setTimeout(function() {
  window.location =
    "itms://itunes.apple.com/us/app/kaon-v-stream/id378890806?mt=8&uo=4";
}, 25);

window.location = "vstream:view?code=...stuff...";

If the window.location assignment fails, the timeout jumps over the App Store before the dialog box comes up. (I found this technique here: Is it possible to register a http+domain-based URL Scheme for iPhone apps, like YouTube and Maps? .)

Unfortunately, this trick is not working in Android. We detect the device server side and wrote this instead of the itms: line:

"market://details?id=com.kaon.android.vstream";

Trouble is, whereas iOS throws an error when you go to an unhandled url scheme, Android goes to a generated page. Therefore, the timeout never gets a chance to run.

Is there some way on a web page to explicitly test for whether a custom URL scheme is handled, or can someone suggest a hack like this one that will work in Android? (Of course, I suppose I need a hack that's going to work no matter what browser they are using, which is probably a tall order...)

link|improve this question

79% accept rate
Sounds like you want to read about how Intents work in Android: developer.android.com/guide/topics/intents/intents-filters.html – CrackerJack9 Aug 29 '11 at 14:13
That isn't a very helpful comment. Our intents work just fine. If our app is installed on the device, the web page launches our app. The question is how to detect whether our app has been installed from the web page, so we know whether to send them to the app or to the store. – jesmith Aug 29 '11 at 15:57
If your app (and subsequently your Intent) is not installed/registered, a request with a protocol of vstream will not go anywhere. So just wrap your timeout with another timeout, since itms: would not be registered on Android (afaik) either. – CrackerJack9 Aug 29 '11 at 15:59
I'll update the question to show clearly what we tried on Android. – jesmith Aug 29 '11 at 16:42
okay thanks, I think I'm missing some piece of this – CrackerJack9 Aug 29 '11 at 16:53
show 1 more comment
feedback

2 Answers

up vote 2 down vote accepted

Solved! The trick is to open my app in an IFRAME, instead of setting the location:

setTimeout(function() {
  window.location =
    "market://details?id=com.kaon.android.vstream";
}, 1000);

document.write('<iframe style="border:none; width:1px; height:1px;" src="vstream:view?code='+code+'"></iframe>');

Notice that I increased the timeout to 1000, because Android actually does both actions in every case (not ideal, but not awful), and this larger timeout is needed to make sure that Market doesn't end up being the thing the user sees when I'm already installed.

(And yes, of course using document.write is so last-century, but I'm old school that way :)

link|improve this answer
easy way to fix it doing both options is getting the variable of the settimeout, and adding window.clearTimeout(num) to the onload event of that iframe. that way if the iframe loads, it runs the code to cancel the window.location timeout. – benpage Dec 7 '11 at 5:12
Would the onload of that iframe would even execute, since it is launching another app? – jesmith Dec 9 '11 at 14:58
feedback

@jesmith, this is a clean version that fixes double action on Android.

if (navigator.appVersion.indexOf('iPhone') > -1) {
  setTimeout(function noapp() { window.location="http://itunes.apple.com/app/id378890806?mt=8"; }, 25);
  window.location = 'vstream:';
}
else if (navigator.userAgent.indexOf('Android') > -1) {
  var iframe = document.createElement('iframe');
  iframe.style.visibility = 'hidden';
  iframe.src = 'vstream:';
  iframe.onload = function noapp() { window.location="market://details?id=com.kaon.android.vstream"; };
  document.body.appendChild(iframe);
}
link|improve this answer
Interesting approach. So the onload handler for a frame gets called even when that frame is unable to load the specified content? – jesmith Mar 21 at 18:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.