Redirect App to Rate in Play Store UdayAndroid

case R.id.rate_app_btn:{ final String appPackageName = getPackageName(); // package name of the app 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("https://play.google.com/store/apps/details?id=" + appPackageName))); } } break;https://codepad.co/snippet
To redirect app to rate our app on playstore android .

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.