1.2.0 • Published 10 years ago

cordova-plugin-adgap v1.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

adgap

ads plugin for cordova, aggregates multiple networks. Only supports banner ad format.

Now adgap supports the following networks:

  • Facebook Audience Network
  • Mopub
  • Admob
  • mMedia
  • InMobi

Usage

First, add the plugin to your cordova project:

cordova plugin add cordova-plugin-adgap --save

Since mMedia requires minSDKVer to be GE 16, if you get build error, then add the following to your config.xml

<platform name="android">
    <preference name="android-minSdkVersion" value="16" />   <------ add this
    <allow-intent href="market:*" />
</platform>

Show banner ads

Then, write code to show ads, after cordova is ready, call configBanner and start the banner logic in the successCallback:

adgap.configBanner({
  reloadSec: 26,
  networks: {
    fban: { name: 'fban', pid: 'YOUR_FBAN_PLACEMENT_ID', weight: 100, reloadSec: 25 },
    admob: { name: 'admob', pid: 'YOUR_ADMOB_PLACEMENT_ID', weight: 100, reloadSec: 25 },
    mopub: { name: 'mopub', pid: 'YOUR_MOPUD_PLACEMENT_ID', weight: 100, reloadSec: 25 },
    mm: { name: 'mm', pid: 'YOUR_MMEDIA_PLACEMENT_ID', weight: 100, reloadSec: 25 },
    inmobi: { name: 'inmobi', pid: 'YOUR_INMOBI_PLACEMENT_ID', acctid: 'YOUR_INMOBI_ACCOUNT_ID', weight: 100, reloadSec: 25 },
  }
}, function () { // successCallback
  adgap.startBanner()
})

The plugin will auto reload banner every X seconds, so when you create placement at network, don't enable auto reload.

When the banner is loaded, or fail to load, events will be published and you can subscribe them:

window.addEventListener('adgap_event', function (adsEvent) {
    // HERE, cannot use JSON.stringify on the info, Event is created by cordova, and cannot be serialized.
    // adsEvent contains ads_type, network_name, event_name, event_detail
    // ads_type = banner
    // network_name = fban
    // event_name = LOAD_OK | LOAD_ERROR | CLICKED
    // event_detail = when error happens, error code like '1001'
  }, false);

If you want to pause the banner loop for a while, let it stop loading new ads for some time, you can:

adgap.snoozeBanner(15000) // will pause the banner loop for 15000 ms

Send broadcast

intenthelper.sendBroadcast('com.xzy.abc.ACTION_NAME',
  { extraName1: 'extraValue1', extraName2: 'extraValue2' })

Get ads info

intenthelper.getAdsInfo(
  function (info) {
    // now get info.adsid and info.adslimittracking
  },
  function (error) {

  }
)

Check if a package is installed or not:

intenthelper.checkPackage('com.awesome.pkg', function (installed) {
  // installed is boolean
})
1.2.0

10 years ago

1.1.9

10 years ago

1.1.8

10 years ago

1.1.7

10 years ago

1.1.6

10 years ago

1.1.5

10 years ago

1.1.4

10 years ago

1.1.2

10 years ago

1.1.1

10 years ago

1.0.9

10 years ago

1.0.8

10 years ago

1.0.7

10 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago