RevMob is a native extension to display ads from RevMov network. RevMob is a worldwide leading ad network when it comes to mobile traffic monetization. The company delivers its publishers with eCPMs well above the average of the industry with a simple SDK implementation. To achieve this they have built a sophisticated campaign targeting algorithm, which maximizes return for both publishers and advertisers.

The native extension allows a developer to use all ad types available, such as fullscreen, banner, link and popup. It’s also possible to use events, which are fired for every important change in the ad state, which can be used to check if an ad was loaded or clicked. The extension has a test mode that displays ads but doesn’t count their clicks/installs/etc nor include them in the statistics.

Sample

var appId:String = null;
if (isIOS()) {
    appId = IOS_APP_ID;
} else if (isAndroid()) {
    appId = ANDROID_APP_ID;
}
var revmob:RevMob = new RevMob(appId);
// fullscreen
revmob.showFullscreen();

// banner   
// the origin (0, 0) is the top left corner of the screen
var positionX:int = 10;
var positionY:int = 10;
var width:int = 400;
var height:int = 60;
revmob.showBanner(positionX, positionY, width, height);

// link
revmob.openAdLink();

// popup
revmob.showPopup();
Air Native Extension, Android, iOS . URL.