vungle

Creator: coderz1093

Last updated:

Add to Cart

Description:

vungle

vungle #
A plugin for Flutter that supports loading and displaying interstitial and rewarded video ads using the Vungle SDK API.
Note: This plugin is in beta, and may still have a few issues and missing APIs. Feedback and Pull Requests are welcome.
Getting Started #
Please go to the Vungle website to create account for your apps at first. You need add your apps there and you will get the app id and placement ids, then use this plugin in your flutter app to do the monetization.
Initialize the plugin #
if (Platfrom.isAndroid) {
Vungle.init('[vungle_android_app_id]');
} else {
// for iOS
Vungle.init('[vungle_ios_app_id]');
}

// You need wait until the plugin initialized to load and show ads
Vungle.onInitializeListener = () {
// The plugin initialized, can load ads for now
}

copied to clipboard
Load Interstitial or rewarded video ads #
Vungle.loadAd('[vungle_placement_id]');

// To know if the ad loaded
Vungle.onAdPlayableListener = (placementId, playable) {
if(playable) {
// The ad has been loaded, could play it for now.
}
}
copied to clipboard
Play Interstitial or rewarded video ads #
if(Vungle.isAdPlayable('[your_placement_id]') {
Vungle.playAd(placementId);
}

Vungle.onAdStartedListener = (placementId) {
// Ad started to play
}

// Deprecated. Please use OnAdEndListener
Vungle.onAdFinishedListener = (placementId, isCTAClicked, isCompletedView) {
// Ad finished to play
// isCTAClicked - User has clicked the `download` button
// isCompletedView - User has viewed the video ad completely

}

Vungle.OnAdEndListener = (placementId) {
// If implemented, this method gets called when a Vungle Ad Unit has been completely dismissed.
}

Vungle.OnAdViewedListener = (placementId) {
// If implemented, this will be called when the ad is first rendered for the specified placement.
}

Vungle.OnAdClickedListener = (placementId) {
// If implemented, this method gets called when user clicks the Vungle Ad.
}

Vungle.OnAdRewardedListener = (placementId) {
// This method is called when the user should be rewarded for watching a Rewarded Video Ad.
// At this point, it's recommended to reward the user.
}

Vungle.OnAdLeftApplicationListener = (placementId) {
// If implemented, this method gets called when user taps the Vungle Ad
// which will cause them to leave the current application(e.g. the ad action
// opens the iTunes store, Mobile Safari, etc).
}

copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.