views:

29

answers:

1

(Question also posted here: http://www.google.com/support/forum/p/Android+Market/thread?tid=68dc1f694537c7dc&hl=en )

http://developer.android.com/guide/publishing/publishing.html recommends searching for apps by Developer Name using the URL: market://search?q=pub:

I can't get this to work for two word names. For instance, if I want to search for all of Google's apps on the Market, I would search for 'Google Inc.' since if you look at Google Earth, Google Sky Map, etc. those are all published by 'Google Inc.'

I've tried the following:
market://search?q=pub:Google%2BInc%2E (equivalent of: Google+Inc.)

market://search?q=pub:Google%20Inc%2E (equivalent of: Google Inc.)

market://search?q=pub:Google Inc. (equivalent of: Google Inc.)

market://search?q=pub:Google+Inc. (equivalent of: Google+Inc.)

but none work. Any suggestions?

+1  A: 

It turns out that the magic sauce is a pair of quote marks. Final solution: market://search?q=pub:"Google Inc."

ChaimKut