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.