Android app rating in app

I am trying to use functionality where I can allow users to rate my application from my application. I do not concentrate on the usual Android attack market, and then do it. Instead, I want my app to have a direct rating system.

I am sure that I can do this iPhone, but does anyone know what to do in android?

+3
android rating
source share
2 answers

So we can evaluate the application, which is offered on the official Android site.

Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("market://details?id=com.test(This is the package name)")); startActivity(intent); 
+11
source share

The application cannot evaluate itself, only the user can do it; this approach reduces abuse. Typically, applications request them on the Android Market in order to rate them, as they reduce the rate of abuse. However, in one application I was told that I will receive a bonus if I rate this application in a certain way (for example, five stars).

+1
source share

All Articles