Skip to content

isinotoff/flutter_appodeal

 
 

Repository files navigation

flutter_appodeal

A Flutter plugin for iOS and Android to use Appodeal SDK in your apps

Getting Started

For help getting started with Flutter, view our online documentation.

For help on editing plugin code, view the documentation.

You need to configure your apps first you use this plugin. Please refer to Appodeal documentation to get your apps configured. If you have any problems configuring your Flutter project, please take a look to Example project in the plugin code.

Import the library via

import 'package:flutter_appodeal/flutter_appodeal.dart';

Declare your listener to get notified about RewardedVideos callbacks

  FlutterAppodeal.instance.videoListener = (RewardedVideoAdEvent event, {String rewardType, int rewardAmount}) {
    print("RewardedVideoAd event $event");
    setState(() {
      videoState = "State $event";
    });
  };

Initialize the plugin with your App Keys

  List<AppodealAdType> types = new List<AppodealAdType>();
  types.add(AppodealAdType.AppodealAdTypeInterstitial);
  types.add(AppodealAdType.AppodealAdTypeRewardedVideo);

   // You should use here your APP Key from Appodeal
   await FlutterAppodeal.instance.initialize(Platform.isIOS ? 'IOSAPPKEY' : 'ANDROIDAPPKEY', types);

And the you can use it in your code

  void loadInterstital() async {
    bool loaded = await FlutterAppodeal.instance.isLoaded(AppodealAdType.AppodealAdTypeInterstitial);
    if (loaded) {
      FlutterAppodeal.instance.showInterstitial();
    }else{
      print("Interstitial not loaded");
    }
  }

Features

You can use, for now, Interstitials and Rewarded Videos. And there is a way to get notified for the RewardedVideos callbacks

About

A Flutter plugin for appodeal

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 33.5%
  • Java 25.7%
  • Objective-C 25.1%
  • Ruby 15.7%