Search code examples
androidgoogle-playrating

Call Back After Giving Rating to app on PlayStore


I am able to redirect the user to PlayStore with the screen of my application using the following code to give the rating and Review

final String appPackageName = getPackageName(); // getPackageName() from Context or Activity object
try { 
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName)));
} catch (android.content.ActivityNotFoundException anfe) {
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id=" + appPackageName)));
} 

But, please give/suggest the way how I can know that Has user Given Rating or not? Thanks in Advance for your help


Solution

  • But, please give/suggest the way how I can know that Has user Given Rating or not?

    There's no callback or similar mechanism for this.