cordova-plugin-ad-adbuddiz
v1.0.45
Published
Show adbuddiz interstitial ad and rewarded video ad.
Downloads
13
Maintainers
Readme
Cordova AdBuddiz plugin
Overview
Show adbuddiz interstitial ad
[android, ios] [cordova cli] [xdk] [cocoon] [phonegap build service]
Requires adbuddiz account https://www.adbuddiz.com
adbuddiz android SDK 3.1.3 adbuddiz ios SDK 2.5.3
This is open source cordova plugin.
You can see Cordova Plugins in one page: http://cranberrygame.github.io?referrer=github
Change log
1.0.42
Updated SDK (adbuddiz android SDK 3.1.3, adbuddiz ios SDK 2.5.3)
Supports rewarded video ad (android only)
1.0.45
Fixed onRewardedVideoAdCompleted not working issue.
Install plugin
Cordova cli
https://cordova.apache.org/docs/en/edge/guide_cli_index.md.html#The%20Command-Line%20Interface - npm install -g [email protected]
cordova plugin add cordova-plugin-ad-adbuddiz
(when build error, use github url: cordova plugin add cordova plugin add https://github.com/cranberrygame/cordova-plugin-ad-adbuddiz)
Xdk
https://software.intel.com/en-us/intel-xdk - Download XDK - XDK PORJECTS - [specific project] - CORDOVA HYBRID MOBILE APP SETTINGS - Plugin Management - Add Plugins to this Project - Third Party Plugins -
Plugin Source: Cordova plugin registry
Plugin ID: cordova-plugin-ad-adbuddiz
Cocoon
https://cocoon.io - Create project - [specific project] - Setting - Plugins - Custom - Git Url: https://github.com/cranberrygame/cordova-plugin-ad-adbuddiz.git - INSTALL - Save
Phonegap build service (config.xml)
https://build.phonegap.com/ - Apps - [specific project] - Update code - Zip file including config.xml
<gap:plugin name="cordova-plugin-ad-adbuddiz" source="npm" />
Construct2
Download construct2 plugin https://dl.dropboxusercontent.com/u/186681453/pluginsforcordova/index.html How to install c2 native plugins in xdk, cocoon and cordova cli https://plus.google.com/102658703990850475314/posts/XS5jjEApJYV
Server setting
android
AdBuddiz - Apps - [specific app] - get Publisher Key:
ios
itunes - Manage Your Apps - [specific app] - get Apple ID
AdBuddiz - Apps - [specific app] - get Publisher Key
API
var publisherKey = "REPLACE_THIS_WITH_YOUR_PUBLISHER_KEY";
/*
var publisherKey;
//android
if (navigator.userAgent.match(/Android/i)) {
publisherKey = "REPLACE_THIS_WITH_YOUR_PUBLISHER_KEY";
}
//ios
else if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i)) {
publisherKey = "REPLACE_THIS_WITH_YOUR_PUBLISHER_KEY";
}
*/
document.addEventListener("deviceready", function(){
//if no license key, 2% ad traffic share for dev support.
//you can get paid license key: https://cranberrygame.github.io/request_cordova_ad_plugin_paid_license_key
//window.adbuddiz.setLicenseKey("[email protected]", "yourLicenseKey");
window.adbuddiz.setUp(publisherKey);
window.adbuddiz.onInterstitialAdPreloaded = function() {
alert('onInterstitialAdPreloaded');
};
window.adbuddiz.onInterstitialAdLoaded = function() {
alert('onInterstitialAdLoaded');
};
window.adbuddiz.onInterstitialAdShown = function() {
alert('onInterstitialAdShown');
};
window.adbuddiz.onInterstitialAdHidden = function() {
alert('onInterstitialAdHidden');
};
//
window.adbuddiz.onRewardedVideoAdPreloaded = function() {
alert('onRewardedVideoAdPreloaded');
};
window.adbuddiz.onRewardedVideoAdLoaded = function() {
alert('onRewardedVideoAdLoaded');
};
window.adbuddiz.onRewardedVideoAdShown = function() {
alert('onRewardedVideoAdShown');
};
window.adbuddiz.onRewardedVideoAdHidden = function() {
alert('onRewardedVideoAdHidden');
};
window.adbuddiz.onRewardedVideoAdCompleted = function() {
alert('onRewardedVideoAdCompleted');
};
}, false);
window.adbuddiz.preloadInterstitialAd();//option, download ad previously for fast show
window.adbuddiz.showInterstitialAd();
window.adbuddiz.preloadRewardedVideoAd();//option, download ad previously for fast show
window.adbuddiz.showRewardedVideoAd();
alert(window.adbuddiz.loadedInterstitialAd());//boolean: true or false
alert(window.adbuddiz.loadedRewardedVideoAd());//boolean: true or false
alert(window.adbuddiz.isShowingInterstitialAd());//boolean: true or false
alert(window.adbuddiz.isShowingRewardedVideoAd());//boolean: true or false
Examples
example/basic/index.html
Test
You can also run following test apk. https://dl.dropboxusercontent.com/u/186681453/pluginsforcordova/adbuddiz/apk.html
Useful links
Cordova Plugins http://cranberrygame.github.io?referrer=github