I have integrated the VungleSDK in my game. I want to remove the "x" button from video ad showing to force the user to watch the complete video. Here's a screenshot of my publisher settings:
This is my code to play Vungle ad video:
func playVungleAd(){
let vSdk:VungleSDK = VungleSDK.sharedSDK();
do{
try vSdk.playAd(self, withOptions : [VunglePlayAdOptionKeyIncentivized: true])
}catch let error as NSError{
print("Error In video ad")
print(error.localizedDescription)
}
}
It displays the following ad but with an "x" button. How can I remove this close button?