I'm trying to force the user to qualify my application. For do that I need launch the AndroidMarket for the user can access to rating web.
Can anyone tell me what is the best way?
I try this, but don't work:
String urlString = "market.android.com/details?id=com.开发者_开发技巧pakagename";
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setData(Uri.parse(urlString));
startActivity(intent);
Thanks a lot!
Try this Url:
String urlString = "market://details?id=com.pakagename";
精彩评论