supersonic.*

Type Library
Revision Release 2024.3703
Keywords ads, advertising, Supersonic
Platforms Android, iOS
Note

This Supersonic plugin serves as the official plugin for the re-branded ironSource network.

Important

Check out new hasUserConsent init parameter to enable GDPR data collection restrictions.

Overview

The Supersonic plugin allows developers to monetize their mobile app with Supersonic static interstitials, rewarded videos, and offer walls.

Registration

Before you can use this plugin, you must register with Supersonic.

Syntax

local supersonic = require( "plugin.supersonic" )

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.supersonic"] =
        {
            publisherId = "com.coronalabs"
        },
    },
}

Important

If building for iOS, you must bypass App Transport Security (ATS) by adding the following to the plist table of build.settings. While we do not blindly encourage this approach for all developers and projects, bypassing ATS is required in certain cases. For more information on ATS, please see the Managing App Transport Security guide.

settings =
{
    iphone =
    {
        plist =
        {
            NSAppTransportSecurity = { NSAllowsArbitraryLoads=true },
        },
    },
}
Note

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

  • "android.permission.INTERNET"

Support