I am developing a kids-app and I have to add a rate-us page in my app, but I am not aware how I can do it before publishing my app,here is the code for rating my app but what URL I will give?
Uri uri =Uri.parse("https://play.google.com/store/apps/detailsid=com.internetdesignzone.nurseryrhymes&hl=en");
Intent goToMarket = new Intent(Intent.ACTION_VIEW, uri);
gotoMark.goToMarket.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY |
Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET |
Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
startActivity(goToMarket);