[android-developers] market://details not working?

2009-03-30 Thread Michael Elsdörfer

Apparently, I supposed to be able to open the Market page of my app by
querying an intent with an URL like:

market://details?id=app_id

where app_id seems to be the package name:

http://www.google.com/support/forum/p/Android+Market/thread?tid=5c8501d73226fad8hl=en

However, while this seems to indeed open the Market app with the
details activity, it always gives me A Server error occured.

I'm trying both launching the intent through code, as well as on an
adb shell as, say:

am start market://details?id=com.NamcoNetworks.PacMan

Neither works.

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 android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] market://details not working?

2009-03-30 Thread Michael Elsdörfer

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=5c8501d73226fad8hl=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 android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---