1

I need to make rate option in my app. I want to just provide ability for users to rate my app on Google Play.

Serhii Stakhiv
  • 936
  • 7
  • 11

1 Answers1

1

I found solution (Kotlin):

    fun rateApp() {
        val uri = Uri.parse("market://details?id=$packageName")
        val myAppLinkToMarket = Intent(Intent.ACTION_VIEW, uri)
        try {
            startActivity(myAppLinkToMarket)
        } catch (e: ActivityNotFoundException) {
            Toast.makeText(this, "Impossible to find an application for the market", Toast.LENGTH_LONG).show()
        }
    }

P.S. This code does not work on the simulator, use a real device.

Serhii Stakhiv
  • 936
  • 7
  • 11