Very silly one. I'm trying to integrate Google's In-app Reviews feature into my Unity application and after deploying build I'm getting the following runtime error message on logcat console.
I followed guide from Google and it looks like there are DLLs or scripts missing or I'm doing something terribly wrong. After executing code:
private ReviewManager _reviewManager;
void Start{
_reviewManager = new ReviewManager();
}
I receive:
AndroidJavaException: java.lang.ClassNotFoundException: com.google.android.play.core.review.ReviewManagerFactory
java.lang.ClassNotFoundException: com.google.android.play.core.review.ReviewManagerFactory
Unity 2019.2.21f. Tried Resolving for Android, tried reinstalling Google Play Core, Common and InApp Reviews (1.2.0) components. Thanks for answers.