Apparently, I'm supposed to be able to open my app in the Android market by querying an Intent with an URL like:
market://details?id=<app_id> <app_id> seems to be the package name, e.g. say "com.NamcoNetworks.PacMan" See for example: http://www.google.com/support/forum/p/Android+Market/thread?tid=5c8501d73226fad8&hl=en However, while this seems to open the Market app's detail page, it always gives me the "A server error occured" message. I've tried both using an app: Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("market://details? id=com.NamcoNetworks.PacMan")); startActivity(intent); As well as through the adb shell: am start "market://details?id=com.NamcoNetworks.PacMan" Any ideas? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

