ukasz123 / fairbid_flutter

Unofficial plugin for FairBid 2.x SDK from Fyber
MIT License
5 stars 2 forks source link

fairbid_flutter

Unofficial plugin for FairBid SDK from Fyber - the advertisement mediation platform. Supports banner, interstitial and rewarded video ads.

Getting Started

Before you start you need to be at least familiar with FairBid SDK official documentation. Topics you should be familiar with:

SDK setup

Create account Publishers UI and create configurations for Android and/or iOS app. App Ids has to be used to initialize SDK as described on official documentation for Android and iOS. You need to pass App Id for the platform your app is running on.

var appId = Platform.isAndroid ? _ANDROID_APP_ID : _IOS_APP_ID;
sdk = FairBid.forOptions(Options(
        appId: appId
      ));

You should keep reference to the FairBid instance to create ad placement holders.

Full screen ads

  1. Initialize ad holder with placement id for the correct platform.
    
    var interstitialPlacementId = Platform.isAndroid ? _ANDROID_INTERSTITIAL_PLACEMENT_ID : _IOS_INTERSTITIAL_PLACEMENT_ID;
    var interstitialAd = sdk.prepareInterstitial(interstitialPlacementId);

var rewardedPlacementId = Platform.isAndroid ? _ANDROID_REWARDED_PLACEMENT_ID : _IOS_REWARDED_PLACEMENT_ID; var rewardedAd = sdk.prepareRewarded(rewardedPlacementId);

2. Request for a fill for an ad.
```dart
await ad.request();

Please note that the completion of request() doesn't mean the ad is available but only that requesting process has been started.

  1. Check if there is a fill available.
var adAvailable = await ad.isAvailable();
  1. Show ad when fill is available.
    await ad.show();

Banner ads

  1. Initialize ad holder with placement id for the correct platform.
    var bannerPlacementId = Platform.isAndroid ? _ANDROID_BANNER_PLACEMENT_ID : _IOS_BANNER_PLACEMENT_ID;
    var bannerAd = sdk.prepareBanner(bannerPlacementId);
  2. Load and show banner on the screen.
    await bannerAd.show(alignment: BannerAlignment.top);

    Banners would show immediately and refresh automatically when ready.

  3. When banner should not be visible on the screen it should be destroyed.
    await bannerAd.destroy();

Donate

You can show that you appreciate my work by sending a donation.

Donate with PayPal