applovin 0.0.1 copy "applovin: ^0.0.1" to clipboard
applovin: ^0.0.1 copied to clipboard

discontinued
outdated

Flutter Plugin Ad Network AppLovin

AppLovin #

Note: Currently only Android platform is supported.

Note: only show interstitial and video rewarded ads.

Getting Started #

  1. Initialization

Call Applovin.init(); during app initialization.

  Applovin.init();

Add inside the <application> tag

<meta-data android:name="applovin.sdk.key"
    android:value="xxxx"  />

2. Request Interstitial Ad and Rewarded Video Ad #

Only instance of AdManager

static AdManager _adManager = AdManager(listener: listener);
_adManager.loadInterstitial();

3. Show Interstitial Ad and Rewarded Video Ad #

listener(MobileAdEvent event){
    if(event == MobileAdEvent.adReceived) _adManager.showInterstitial();
  }

Events #

enum MobileAdEvent {
  adClicked,
  adDisplayed,
  adHidden,
  adReceived,
  failedToReceiveAd,
  userRewardVerified,
  userOverQuota,
  userRewardRejected,
  validationRequestFailed,
  userDeclinedToViewAd,
  adOpenedFullscreen,
  adClosedFullscreen,
  adLeftApplication,
  adFailedToDisplay,
  videoPlaybackBegan,
  videoPlaybackEnded,
  onNativeAdsLoaded,
  onNativeAdsFailedToLoad,
  onNativeAdImagesPrecached,
  onNativeAdVideoPreceached,
  onNativeAdImagePrecachingFailed,
  onNativeAdVideoPrecachingFailed
}

Future Work #

Implement for iOS platform, Banner Ads, NativeAds,

19
likes
20
points
24
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter Plugin Ad Network AppLovin

License

unknown (license)

Dependencies

flutter

More

Packages that depend on applovin

Packages that implement applovin