Interface SuperAwesomeOptions.NetworkOptions
-
- All Implemented Interfaces:
public interface SuperAwesomeOptions.NetworkOptions
-
-
Method Summary
Modifier and Type Method Description abstract BooleangetParentalGateEnabled()The Parental gate is a dialog that appears when a user clicks on an ad, disabled by default. abstract UnitsetParentalGateEnabled(Boolean parentalGateEnabled)The Parental gate is a dialog that appears when a user clicks on an ad, disabled by default. abstract BooleangetBumperPageEnabled()The Bumper page is a customizable dialog that notifies the user when they are about to leave a kid-safe place and proceed to an external website. abstract UnitsetBumperPageEnabled(Boolean bumperPageEnabled)The Bumper page is a customizable dialog that notifies the user when they are about to leave a kid-safe place and proceed to an external website. abstract StringgetBumperPageCustomAppName()Set app name to be displayed on the bumper page. abstract UnitsetBumperPageCustomAppName(String bumperPageCustomAppName)Set app name to be displayed on the bumper page. abstract DrawablegetBumperPageLogo()Set logo to be displayed on the bumper page. abstract UnitsetBumperPageLogo(Drawable bumperPageLogo)Set logo to be displayed on the bumper page. -
-
Method Detail
-
getParentalGateEnabled
abstract Boolean getParentalGateEnabled()
The Parental gate is a dialog that appears when a user clicks on an ad, disabled by default. recommended to set it to true if the app is in kids category.
-
setParentalGateEnabled
abstract Unit setParentalGateEnabled(Boolean parentalGateEnabled)
The Parental gate is a dialog that appears when a user clicks on an ad, disabled by default. recommended to set it to true if the app is in kids category.
-
getBumperPageEnabled
abstract Boolean getBumperPageEnabled()
The Bumper page is a customizable dialog that notifies the user when they are about to leave a kid-safe place and proceed to an external website. disabled by default.
-
setBumperPageEnabled
abstract Unit setBumperPageEnabled(Boolean bumperPageEnabled)
The Bumper page is a customizable dialog that notifies the user when they are about to leave a kid-safe place and proceed to an external website. disabled by default.
-
getBumperPageCustomAppName
abstract String getBumperPageCustomAppName()
Set app name to be displayed on the bumper page. By default, the Bumper page displays the application name.
-
setBumperPageCustomAppName
abstract Unit setBumperPageCustomAppName(String bumperPageCustomAppName)
Set app name to be displayed on the bumper page. By default, the Bumper page displays the application name.
-
getBumperPageLogo
abstract Drawable getBumperPageLogo()
Set logo to be displayed on the bumper page. By default, the Bumper page displays the AwesomeAds logo
-
setBumperPageLogo
abstract Unit setBumperPageLogo(Drawable bumperPageLogo)
Set logo to be displayed on the bumper page. By default, the Bumper page displays the AwesomeAds logo
-
-
-
-