This is just a quick guide and a simple example of how to add the Google Play In-app review dialog in your app. This is what it looks like after I implemented this in RSS feed reader app.
1. Add Review API Libraries
This example of build.gradle.kts ( Kotlin script/KTS) in your app module.
It is better to implement theReviewMangerin activity rather than a composable function because its APIs needs an activity. Well, you can technically do it in composable function (through LocalContext), but it is not a good practice because composable functions shouldn't need to know about the activity.