I'm guessing you are working off some old data. See this page: http://developer.android.com/guide/publishing/publishing.html
The intent should be a Uri something like market://search?q=pname:<package> or market://search?q=pub:"<Developer Name>" to see all your apps. On Mar 29, 3:45 pm, Michael Elsdörfer <[email protected]> wrote: > 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=5c850... > > 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 -~----------~----~----~----~------~----~------~--~---

