Initialize the Audience Network SDK for Unity

When using Audience Network SDK for Unity, call the initialize() method prior to any other SDK operations.

public class YourScene : MonoBehaviour
{

  private void Awake()
  {  
     // …

     AudienceNetworkAds.Initialize();

     // ...
  }

}