You can use the DefVideoAds extension in your own project by adding this project as a Defold library dependency.
Open your game.project file and in the dependencies field under project add:
Just made first update - removed one unneed delegate.
And I found an issue with “Sign IOS App…” maybe @sven or @britzl know what it can be?
Issue:
I install “Sign IOS App…” dmengine to my ipad;
change example project - made an unityads.initialization in init() method of script;
cmd+b example project;
it will initialized but when I tap to show ad - it doesn’t show. Looks like it shows somewhere in background.
I have no this issue in the bundle build. And all fine when I made unityads.initialization in other place (not in init method)
Now, when bug with UIWindow (1.2.103) fixed, i have one more question.
As I understand, Unity Ads delegate should be a UIViewController.
I adding this view to scene next way (using app UIView that I recieve using GetNativeiOSUIView()):
I am bad in IOS, maybe somebody know… Now when we have UIWindow, should I change this code? And add the view to application view hierarchy some other way?
(prev question about init method and UIView initialization when i use dmengine still opened. And maybe the answer to this question will help with the previous one)
Thank you!
UPD 1.0.1 :
Unity ADS SDK was updated to latest version (2.2.1)
New version may crash on iOS (this is bug of original Unity sdk, not mine) if you try to show ads before initialization. Be careful and use isReady() method before Show() (without parameters) .
UPD 1.1.1 :
UnityAds plugin has strange crash in iOS 11.3.1 - isReady() and show() and getPlacementState() method doesn’t work without placementId parameter. I’ll try to understand what’s wrong with my code in new ios, but for now I made a hotfix. Now you receive a lua error (without crash) when you try to use isReady() or show() without placementId.
Thanks @karawra for the report and @Dragosha for helping with testing (i have no needed device)!
UPD 1.2.0 :
Fixed bug with isReady(), show(), getPlacementState() without placementId parameter. You can use those methods with defaults parameter again.
Fixed bug with UnityAds, when you try to call show() before sdk initialisation.