On Nov 30, 8:33 pm, Shalini <[email protected]> wrote:
> I have created an android app and i want to add review option inside
> the app. user need not to go to market ti rate the app. Can anyone
> please tell me how to do that.
I think the best you can hope for is to give a direct link to your
app's market presence and instruct the user to rate it there:
Uri uri = Uri.parse("market://search?q=pname:your.package.name");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
--
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