Hi all,
My iOS app is crashing when phone is in airplane mode.
Specifically, it crashes when calling the Unity ad.
Is there a way to prevent this from happening?
BTW, using the below script:
using UnityEngine;
using UnityEngine.Advertisements;
public class UnityAdsExample : MonoBehaviour
{
public void ShowAd()
{
if (Advertisement.IsReady())
{
Advertisement.Show();
}
}
}