It looks like the EnableLogging call is ignored.
Doing this:
var testing = new ShouldEnable(); testing.BooleanValue = false; AmazonMobileAdsImpl.Instance.EnableTesting(testing);
Doesn't stop the logging.
It looks like the EnableLogging call is ignored.
Doing this:
var testing = new ShouldEnable(); testing.BooleanValue = false; AmazonMobileAdsImpl.Instance.EnableTesting(testing);
Doesn't stop the logging.
Hi AppyNation,
Have you instantiated the instance prior to disabling? Also, your sample provided is for EnablesTesting, not EnablesLogging.
It should be
private IAmazonMobileAds mobileAds; public ShouldEnable testing = new ShouldEnable(); void Start() { mobileAds = IAmazonMobileAdsImp.Instance; testing.BooleanValue = false; mobileAds.EnableLogging(testing); }
No one has followed this question yet.