Skip to content

Android Interstitial Basic Usage

Mert Celik edited this page Sep 24, 2018 · 1 revision

Basic usage is designed to get your application up and running with our interstitials as soon as possible without diving into many details.

N.B.: In order to implement basic usage for interstitials, you must have auto-loading enabled for interstitials. To learn how to enable auto-loading, please refer here.

1. Check if the interstitial is ready and show it

if (AMInterstitial.isReady()) {
    AMInterstitial.show(activity);
}
Clone this wiki locally