I'm developing Application on PhoneGap\Cordova platform, and willing to integrate MobFox video ads.
I'm trying to play video-ad, when getting a VAST 2.0 XML from MobFox ad-server, But can't figure out how...
Will be glad for any help or direction!
I'm developing Application on PhoneGap\Cordova platform, and willing to integrate MobFox video ads.
I'm trying to play video-ad, when getting a VAST 2.0 XML from MobFox ad-server, But can't figure out how...
Will be glad for any help or direction!
Just follow the MobFox official guideline, no need to handle the XML, just call the API. See the java example code for android:
mManager = new AdManager(this, "http://my.mobfox.com/request.php","ENTER_PUBLISHER_ID_HERE", true);
mManager.setListener(this);
mManager.setInterstitialAdsEnabled(true); //enabled by default. Allows the SDK to request static interstitial ads.
mManager.setVideoAdsEnabled(true); //disabled by default. Allows the SDK to request video fullscreen ads.
mManager.setPrioritizeVideoAds(true); //disabled by default. If enabled, indicates that SDK should request video ads first, and only if there is no video request an interstitial (if enabled)
mManager.requestAd();