UnityAds.canShowAds

Hello
I’m implementing UnityAds adapter to my mopub plugin in Java and I have a problem with UnityAds.canShowAds method. In earlier versions of UnityAds SDK (1.0.3 and lower) this method were called like this: UnityAds.canShowAds(). In 1.0.4 SDK this method is being called like so: UnityAds.canShowAds(arg0).
My question is what’s arg0 ? I can’t see anywhere in documentation descripction of this mysterious argument.

Where are you seeing this? I haven’t seen any reference to UnityAds.canShowAds() that takes an argument.

Here is a link to the MoPub adapter in the latest version of the Unity Ads SDK (1.3.10).

Ok. I’ve figured it out. I used unity ads lib project in eclipse which I downloaded from Asses Store, that one has some changes for example UnityAds.canShowAds(arg0). So I’ve downloaded unity ads sdk from here GitHub - Applifier/unity-ads-sdk: Unity Ads SDK for iOS/Android, release repository and used lib project from this package in my eclpise mopub project and it worked. And in this one the UnityAds.canShow is without any arguments so it’s ok.

And yes, I know about this adapter, my adapter is based on this one but I’ve done a some changes to it.