FAQ

Native popup not displayed on Android.

Read and follow the complete Google docs for testing here: https://developer.android.com/guide/playcore/in-app-review/test


The type or namespace name 'PopupOptions' could not be found

Add using Gley.RateGame; at the top of your file.


The name 'FindObjectsByType' does not exist in the current context

Fix 1:

Upgrade Your Unity Editor to a LTS version of Unity greater than 2021.3.29

Fix 2 when it is not possible to upgrade to a LTS version:

Replace the new FindObjectsByType

With the old FindObjectsOfType which is marked as obsolete in the latest versions of Unity.

FindObjectsByType<Canvas>(FindObjectsSortMode.None);
//becomes
FindObjectsOfType<Canvas>();

Last updated