Type Library Revision 2018.3276 Keywords ads, advertising, Facebook Audience Network, fbAudienceNetwork Platforms Android, iOS Sample https://github.com/coronalabs/plugins-sample-fbAudienceNetwork
The Facebook Audience Network plugin allows developers to monetize their mobile app with Facebook banner and static interstitial ads.
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.
The Facebook Audience Network plugin is offered in two varieties, aimed to accommodate different Corona developers and business models:
Monetization through the Facebook Audience Network Free plugin entails a revenue share with Corona Labs in the form of a fixed 5% flat rate, but the ad revenue you see in your Facebook Developer Portal is all yours.
The Facebook Audience Network Paid plugin lets you keep 100% of your ad revenue. It is only available to users who have purchased the Facebook Audience Network Paid plugin.
Before you can use the Facebook Audience Network, you must set up Audience Network in your app.
local fbAudienceNetwork = require( "plugin.fbAudienceNetwork" )
local fbAudienceNetwork = require( "plugin.fbAudienceNetwork.paid" )
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" }, }, }
settings = { plugins = { ["plugin.fbAudienceNetwork.paid"] = { publisherId = "com.coronalabs" }, }, }
For Android, the following permissions/features are automatically added when using this plugin:
"android.permission.INTERNET"
"android.permission.ACCESS_WIFI_STATE"