Skip to content Skip to sidebar Skip to footer

Unity's Google In-app Review Plugin Error: Java.lang.classnotfoundexception: Com.google.android.play.core.review.reviewmanagerfactory

I'm trying to integrate Google's In-app Review feature into my Unity application and getting the following runtime error message on logcat console. Anyone knows the solution to thi

Solution 1:

It turned out that the problem was introduced by a proguard obfuscation. In order to keep the symbols I had to add the following to the proguard definition file:

-keep class com.google.android.play.core.** { *; }

Post a Comment for "Unity's Google In-app Review Plugin Error: Java.lang.classnotfoundexception: Com.google.android.play.core.review.reviewmanagerfactory"