From fa331d0dfee0bc7324c788915292066e31842d49 Mon Sep 17 00:00:00 2001
From: Scott Main
The <query> is a placeholder for the search query to execute in Android
-Market. The query can be a raw text string or you can include parameters that perform a search
-based on the publisher name or application package name:
<URI_prefix>search?q=<search_query>
<URI_prefix>search?q=pub:<publisher_name>
You can use this type of search to show all of your published applications.
<URI_prefix>search?q=pname:<package_name>
market://search?q=<query>
The query may include the {@code pub:} or {@code pname:} parameters described above.
+The query may include the {@code pub:} parameter described above.
For example, here's how you can initiate a search in the Android Market application, based on the publisher name:
@@ -290,6 +291,9 @@ intent.setData(Uri.parse("market://search?q=pub:Your Publisher Name")); startActivity(intent); +The search result shows all applications published by the publisher and which are compatible with +the current device.
+http://market.android.com/search?q=<query>
-The query may include the {@code pub:} or {@code pname:} parameters described above.
+The query may include the {@code pub:} parameter described above.
For example, here's a link that initiates a search on the Android Market web site, based on the publisher name:
@@ -309,6 +313,8 @@ publisher name: <a href="http://market.android.com/search?q=pub:Your Publisher Name">Search Link</a> +The search result shows all applications published by the publisher.
+market://search?q=pub:<publisher_name>http://market.android.com/search?q=pname:<package_name>market://search?q=pname:<package_name>