tappx-phonegap

Tappx Phonegap and Cordova plugin ===============================

Usage no npm install needed!

<script type="module">
  import tappxPhonegap from 'https://cdn.skypack.dev/tappx-phonegap';
</script>

README

Tappx Phonegap and Cordova plugin

This is the Tappx plugin for Phonegap & Cordova. Start monetizing your Phonegap or Cordova apps with this plugin.


Platform SDK supported

  • iOS, using AdMob SDK for iOS, v7.13.1
  • Android, using latest Google Play Service for Android (managed by gradle)

Install

Add the following tag to your config.xml file to show Tappx ads with your Phonegap Build apps:

<gap:plugin name="tappx-phonegap-build" source="npm"/>

To use the plugin with Cordova or with Phonegap CLI type the following command in your command line:

cordova plugin add tappx-phonegap

Plugin update (phonega/cordova cli)

cordova-admob~4.1.15 and later are now updated to Firebase (ios 7.13.1 and later and managed by gradle in android)

To update the plugin you should remove the plugin ad add it again:

$ cordova plugin rm cordova-admob
$ npm cache clear
$ cordova plugin add cordova-admob

Sometimes removing the plugin causes an error (it's been reported to cordova https://issues.apache.org/jira/browse/CB-12083). If that happens, remove first cordova-libgoogleadmobads manually:

$ rm plugins/cordova-libgoogleadmobads/ -rf
$ cordova plugin rm cordova-admob
$ npm cache clear
$ cordova plugin add cordova-admob

Setup

Note: Before continuing, ensure that you have a proper Tappx account, and optionally, an Admob account.

Place the following code in your deviceready event:

    function onDeviceReady() {
      document.removeEventListener('deviceready', onDeviceReady, false);

      // Set AdMobAds options:
      admob.setOptions({
        publisherId:          "NONE",                                    // Replace with your AdMob id (if you don't have any, set it to "NONE")
        tappxIdiOS:           "/XXXXXXXXX/Pub-XXXX-iOS-IIII",            // Replace with your Tappx Id for iOS
        tappxIdAndroid:       "/XXXXXXXXX/Pub-XXXX-Android-AAAA",        // Replace with your Tappx Id for Android
        tappxShare:           1                                          // Do not use lower tappxShare ratio if you have set publixherId to "NONE"
      });

      // Start showing banners (will show atomatically as autoShowBanner is set to true by default)
      admob.createBannerView();

      // Request interstitial (will present automatically as autoShowInterstitial is set to true by default)
      admob.requestInterstitial();
    }

    document.addEventListener("deviceready", onDeviceReady, false);

tappxShare parameter will specify the amout of traffic you want to share to Tappx, being 0 = 0% and 1 = 100%.

In example, if you would like to share 80% traffic source to Tappx and the rest to Admob, this would be the corresponding configuration:

      // Set AdMobAds options:
      admob.setOptions({
        publisherId:          "ca-app-pub-XXXXXXXXXXXXXXXX/BBBBBBBBBB",  // Replace with your AdMob id
        tappxIdiOS:           "/XXXXXXXXX/Pub-XXXX-iOS-IIII",            // Replace with your Tappx Id for iOS
        tappxIdAndroid:       "/XXXXXXXXX/Pub-XXXX-Android-AAAA",        // Replace with your Tappx Id for Android
        tappxShare:           0.8                                        // Do not use lower tappxShare ratio if you have set publixherId to "NONE"
      });

Full documentation

Visit the wiki pages to know in detail about Tappx Cordova plugin, where you will find the following topics:


License

The MIT License

Copyright (c) 2014 AppFeel

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Credits