Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
cordova-plugin-ad-adbuddiz
Advanced tools
Show adbuddiz interstitial ad
[android, ios] [cordova cli] [xdk] [cocoon]
Requires adbuddiz account https://www.adbuddiz.com
adbuddiz android SDK 3.0.9 adbuddiz ios SDK 2.5.6
This is open source cordova plugin.
You can see Plugins For Cordova in one page: http://cranberrygame.github.io?referrer=github
https://cordova.apache.org/docs/en/edge/guide_cli_index.md.html#The%20Command-Line%20Interface - npm install -g cordova@5.0.0
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)
https://software.intel.com/en-us/intel-xdk - Download XDK - XDK PORJECTS - [specific project] - CORDOVA 3.X HYBRID MOBILE APP SETTINGS - PLUGINS - Third Party Plugins - Add a Third Party Plugin - Get Plugin from the Web -
Name: adbuddiz
Plugin ID: com.cranberrygame.cordova.plugin.ad.adbuddiz
[v] Plugin is located in the Apache Cordova Plugins Registry
https://cocoon.io - Create project - [specific project] - Setting - Plugins - Custom - Git Url: https://github.com/cranberrygame/cordova-plugin-ad-adbuddiz.git - INSTALL - Save
https://build.phonegap.com/ - Apps - [specific project] - Update code - Zip file including config.xml
<gap:plugin name="cordova-plugin-ad-adbuddiz" source="npm" />
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
AdBuddiz - Apps - [specific app] - get Publisher Key:
itunes - Manage Your Apps - [specific app] - get Apple ID
AdBuddiz - Apps - [specific app] - get Publisher Key
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 free license key from https://play.google.com/store/apps/details?id=com.cranberrygame.pluginsforcordova
//window.adbuddiz.setLicenseKey("yourEmailId@yourEmaildDamin.com", "yourFreeLicenseKey");
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');
};
}, false);
window.adbuddiz.preloadInterstitialAd();//option, download ad previously for fast show
window.adbuddiz.showInterstitialAd();
alert(window.adbuddiz.loadedInterstitialAd());//boolean: true or false
alert(window.adbuddiz.isShowingInterstitialAd());//boolean: true or false
You can also run following test apk. https://dl.dropboxusercontent.com/u/186681453/pluginsforcordova/adbuddiz/apk.html
Plugins For Cordova
http://cranberrygame.github.io?referrer=github
FAQs
Show adbuddiz interstitial ad and rewarded video ad.
The npm package cordova-plugin-ad-adbuddiz receives a total of 0 weekly downloads. As such, cordova-plugin-ad-adbuddiz popularity was classified as not popular.
We found that cordova-plugin-ad-adbuddiz demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.