Skip to content
This repository was archived by the owner on Jun 23, 2024. It is now read-only.

Latest commit

 

History

8 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cordova-plugin-vungle

Vungle ads for Apache Cordova

WARNING: This plugin available only for iOS.

Install plugin

$ cordova plugin add cordova-plugin-vungle

The plugin.xml doesn't have ablity to put embedded frameworks to your project automaticly (or I didn't find the solution), so find VungleSDK.embeddedFramework in sources (src/ios) and drag & drop it to the directory into Xcode under Frameworks.

IMPORTANT: The VungleSDK.embeddedframework folder should be added as a group (yellow folder) and not as a reference (blue folder).

add framework to the iOS project

Methods

Vungle.setup(success_callback, error_callback, debugMode, appID)

Initial method wich connect to Vungle.
(boolean) debugMode - if set to true you could see debug output from Vungle SDK.
(string) appID - the appID of your app in Vungle Dashboard.

Vungle.requestAd(success_callback, error_callback)

When success callback was emitted you can show an ad.

Vungle.showAdWithOptions(success_callback, error_callback, options)

Calling this method will show an ad.
Success callback returns info about the view.
Options is an object of Vungle options, defined here in "Customized Ad Experience" section.

Example

let appID = 'VungleAppID';
let options = {
  VunglePlayAdOptionKeyPlacement: 'default',
  VunglePlayAdOptionKeyIncentivized : true,
  VunglePlayAdOptionKeyIncentivizedAlertBodyText : "Are you sure?",
  VunglePlayAdOptionKeyIncentivizedAlertCloseButtonText : "Yes",
  VunglePlayAdOptionKeyIncentivizedAlertContinueButtonText : "No, I want to get reward.",
  VunglePlayAdOptionKeyIncentivizedAlertTitleText : "Attention!"  
};

Vungle.setup(() => {
  Vungle.requestAd(() => {
    Vungle.showAdWithOptions((info) => {
      console.log(info);
    }, (error) => {
      console.log(error);
    }, options);
  }, () => {
    console.log('Vungle request ad failed.');
  })
}, () => {
   console.log('Vungle setup failed.');
}, true, appID);

paypal

About

Vungle ads for Apache Cordova

Topics

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages