I implemented the new unity advertisements package v4.3.0 and the ads controller script is giving the error CS1501 saying No overload for method 'Initialize' takes 4 arguments. Here is the code from the script at lines 39 - 49
`public void Initialize()
{
if (!Advertisement.isSupported)
{
Debug.LogWarning(Application.platform + " is not supported by Advertisement");
}
else
{
Advertisement.Initialize(GameId, TestMode, false, this);
}
}`
↧