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-adcolony
Advanced tools
Show adcolony full screen ad and rewarded video ad
[android, ios] [cordova cli] [xdk] [cocoon] [phonegap build service]
Requires adcolony account http://www.adcolony.com/
AdColony Android SDK Version: 2.2.1 (Modified: 2014/2/10) AdColony iOS SDK Version: 2.5.3 (Modified: 2015/07/22)
This is open source cordova plugin.
You can see Cordova Plugins in one page: http://cranberrygame.github.io?referrer=github
2016.1.22
updated AdColony iOS SDK Version: 2.5.3
https://cordova.apache.org/docs/en/edge/guide_cli_index.md.html#The%20Command-Line%20Interface - npm install -g cordova@6.0.0
cordova plugin add cordova-plugin-ad-adcolony
(when build error, use github url: cordova plugin add cordova plugin add https://github.com/cranberrygame/cordova-plugin-ad-adcolony)
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-adcolony
https://cocoon.io - Create project - [specific project] - Setting - Plugins - Custom - Git Url: https://github.com/cranberrygame/cordova-plugin-ad-adcolony.git - INSTALL - Save
https://build.phonegap.com/ - Apps - [specific project] - Update code - Zip file including config.xml
<gap:plugin name="cordova-plugin-ad-adcolony" 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
test mode setting: http://www.adcolony.com/ - Login - MONETISATION - [specific app] -[specific zone] - Development - Show test ads only (for dev or debug)? Yes No
var appId = "REPLACE_THIS_WITH_YOUR_APP_ID";
var interstitialAdZoneId = "REPLACE_THIS_WITH_YOUR_INTERSTITIAL_AD_ZONE_ID";
var rewardedVideoAdZoneId = "REPLACE_THIS_WITH_YOUR_REWARDED_VIDEO_AD_ZONE_ID";
/*
var appId;
var interstitialAdZoneId;
var rewardedVideoAdZoneId;
//android
if (navigator.userAgent.match(/Android/i)) {
appId = "REPLACE_THIS_WITH_YOUR_APP_ID";
interstitialAdZoneId = "REPLACE_THIS_WITH_YOUR_INTERSTITIAL_AD_ZONE_ID";
rewardedVideoAdZoneId = "REPLACE_THIS_WITH_YOUR_REWARDED_VIDEO_AD_ZONE_ID";
}
//ios
else if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i)) {
appId = "REPLACE_THIS_WITH_YOUR_APP_ID";
interstitialAdZoneId = "REPLACE_THIS_WITH_YOUR_INTERSTITIAL_AD_ZONE_ID";
rewardedVideoAdZoneId = "REPLACE_THIS_WITH_YOUR_REWARDED_VIDEO_AD_ZONE_ID";
}
*/
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.adcolony.setLicenseKey("yourEmailId@yourEmaildDamin.com", "yourLicenseKey");
window.adcolony.setUp(appId, interstitialAdZoneId, rewardedVideoAdZoneId);
//
window.adcolony.onInterstitialAdLoaded = function() {
alert('onInterstitialAdLoaded');
};
window.adcolony.onInterstitialAdShown = function() {
alert('onInterstitialAdShown');
};
window.adcolony.onInterstitialAdHidden = function() {
alert('onInterstitialAdHidden');
};
//
window.adcolony.onRewardedVideoAdLoaded = function() {
alert('onRewardedVideoAdLoaded');
};
window.adcolony.onRewardedVideoAdShown = function() {
alert('onRewardedVideoAdShown');
};
window.adcolony.onRewardedVideoAdHidden = function() {
alert('onRewardedVideoAdHidden');
};
window.adcolony.onRewardedVideoAdCompleted = function() {
alert('onRewardedVideoAdCompleted');
};
}, false);
window.adcolony.showInterstitialAd();
window.adcolony.showRewardedVideoAd();
alert(window.adcolony.loadedInterstitialAd());//boolean: true or false
alert(window.adcolony.loadedRewardedVideoAd());//boolean: true or false
alert(window.adcolony.isShowingInterstitialAd());//boolean: true or false
alert(window.adcolony.isShowingRewardedVideoAd());//boolean: true or false
You can also run following test apk. https://dl.dropboxusercontent.com/u/186681453/pluginsforcordova/adcolony/apk.html
Cordova Plugins
http://cranberrygame.github.io?referrer=github
FAQs
Show adcolony interstitial ad and rewarded video ad
The npm package cordova-plugin-ad-adcolony receives a total of 3 weekly downloads. As such, cordova-plugin-ad-adcolony popularity was classified as not popular.
We found that cordova-plugin-ad-adcolony 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.