fbAudienceNetwork.*

Type Library
Revision 2017.3060
Keywords ads, advertising, Facebook Audience Network, fbAudienceNetwork
Platforms Android, iOS
Sample https://github.com/coronalabs/plugins-sample-fbAudienceNetwork

Overview

The Facebook Audience Network plugin allows developers to monetize their mobile app with Facebook banner and static interstitial ads.

Note

For monetization through the Facebook Audience Network plugin, Corona Labs takes a revenue share in the form of a fixed 5% flat rate, but the revenue you see in your dashboard is all yours.

Important

Facebook has a method for calling test ads which is different from other Corona ad providers. To test ads during implementation of this plugin, you must follow their requirements. Please read the notes in the fbAudienceNetwork.init() documentation and follow the steps to enable test ads.

Registration

Before you can use the Facebook Audience Network, you must set up Audience Network in your app.

Syntax

local fbAudienceNetwork = require( "plugin.fbAudienceNetwork" )

Functions

Events

Project Settings

To use this plugin, add an entry into the plugins table of build.settings. When added, the build server will integrate the plugin during the build phase.

settings =
{
    plugins =
    {
        ["plugin.fbAudienceNetwork"] =
        {
            publisherId = "com.coronalabs"
        }
    }
}
Note

For Android, the following permissions/features are automatically added when using this plugin:

  • "android.permission.INTERNET"
  • "android.permission.ACCESS_WIFI_STATE"

Support