Google In-App Review Dialog

As soon as the developers publish apps on stores like Google Play or App Store, user reviews come into mind correct? User feedback plays an important role that letting the development team know how much the users are enjoying their app and which part needs to be updated. However, users often don’t submit reviews of apps on Google Play due to either laziness in going to the store or lack of awareness of how to review apps. To overcome these challenges Google has developed an In-App Review API for letting users give their feedback directly within the app. Cool, isn’t it? Let’s jump into the integration part and see how you can manage it in your apps. Add the Play core dependency in your build.gradle file. implementation ( "com.google.android.play:core:1.10.3" ) Now we will create the instance of ReviewManager using ReviewManagerFactory , It provides the flow to show the In-App review dialog inside the app. val reviewManager = ReviewManagerFactory.create( this ) It is n...