Initialize the Audience Network SDK for Unity
Updated: Jun 29, 2021
Copy for LLM
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();
// ...
}
}