On Aug 12, 9:17 am, sblantipodi <[email protected]> wrote:
> fromt he LVL code sample I Noticed that they use this > > Intent marketIntent = new Intent(Intent.ACTION_VIEW, Uri.parse( > "http://market.android.com/details? > id=" + packageName())); > > is this correct? why you tell me that I need to use market:// ??? No, that's not correct, at least not for the current incarnation of the Market. The correct URL is: "market://search?q=pname:" + packageName() There are rumors that Google is going to release a real Market web client this afternoon (see http://tinyurl.com/2abr9bk), and perhaps this URL in the LVL sample app is something that snuck out ahead of that, but as of this moment... it's wrong. String -- 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

