ShowOptions Type Not Found

Hi Everyone!!!

I’m still having issues using unityAds, on the same proyect, same code, i builded for android and all works perfect, switched to build for iOs and i get this error…
Unity ads are active, but i still get this error, any hints? thanks in advance!

#if UNITY_ADS
        private ShowOptions GetShowOptions () {
            ShowOptions options = new ShowOptions ();
            options.resultCallback += OnAdFinished;
            return options;
        }
#endif

Looks like you’re missing namespace or plugin is not available for iOS.

Yeah… that’s exactly what the error means…
BUT, if the precompiler directive UNITY_ADS is active, and the code is being executed, it means that the ads are active, and the library has been built and its present on the project… also, its a part of Unity.Advertisement, reason why it should throw lots of error, and even on earlier lines of code (since the include)