We have the below option, but it is navigating to top of our app page only. I want to navigate programatically to write a review screen of my app exactly. This option is available in iOS.
Android(Navigating only to the app screen playstore)
val uri: Uri = Uri.parse("market://details?id=$packageName")
val goToAppRatingPageAction = Intent(Intent.ACTION_VIEW, uri)
startActivity(goToAppRatingPageAction)
iOS(Navigating exactly to the rating screen in app store)
UIApplication.shared.openURL("itms-apps://itunes.apple.com/app/\(appID)?action=write-review")
I have rate us option in my app, when we click on it, i have to navigate to write a review screen of my app in play store.
I think you are asking for this
https://developer.android.com/guide/playcore/in-app-review
Android already provides it . You don't need to redirect user to outside of your app . You can provide smooth experience to user by integrating this But make sure you ask for rating after sometime