Assets/GoogleMobileAds/Api/RewardBasedVideoAd.cs(38,54): error CS1501: No overload for method `GetType' takes `1' arguments.
the error happens at:
private RewardBasedVideoAd()
{
Type googleMobileAdsClientFactory = Type.GetType(
"GoogleMobileAds.GoogleMobileAdsClientFactory,Assembly-CSharp"); <----------
MethodInfo method = googleMobileAdsClientFactory.GetMethod(
"BuildRewardBasedVideoAdClient",
BindingFlags.Static | BindingFlags.Public);
this.client = (IRewardBasedVideoAdClient)method.Invoke(null, null);
client.CreateRewardBasedVideoAd();
tools:
Unity 2018.2.18f1
Rider 2018 1.3
how can i fix this?