adcolony_flutter 1.4.0 copy "adcolony_flutter: ^1.4.0" to clipboard
adcolony_flutter: ^1.4.0 copied to clipboard

unlistedoutdated

Flutter plugin for AdColony ads (support for both Android & iOS)

AdColony SDK for Flutter #

Getting Started #

1. Initialization #

Call Adcolony.init(); during app initialization.

AdColony.init(AdColonyOptions('#your_app_id', '0', this.zones));
class AdColonyOptions {
	final String id;
	final String gdpr;
	final List<String> zones;
	AdColonyOptions(this.id, this.gdpr, this.zones);
	Map<String, dynamic> toJson() =>
	{'Id': this.id, 'Gdpr': this.gdpr, 'Zones': this.zones};
}

For more information GDPR

2. Request Interstitial Ad and Rewarded Video Ad #

	AdColony.request('#ad_zone', listener);

3. Show Ad in listener #

listener(AdColonyAdListener event) {
	if (event == AdColonyAdListener.onRequestFilled)
		AdColony.show();
}

4. Show Ad Banner #

BannerView((AdColonyAdListener event) =>  print(event), BannerSizes.leaderboard, '#ad_zone'),

5. ProGuard Configuration #

# For communication with AdColony's WebView
-keepclassmembers class * { 
    @android.webkit.JavascriptInterface <methods>; 
}
# For removing warnings due to lack of Multi-Window support
-dontwarn android.app.Activity

Events #

enum AdColonyAdListener {
	onRequestFilled,
	onRequestNotFilled,
	onReward,
	onOpened,
	onClosed,
	onIAPEvent,
	onExpiring,
	onLeftApplication,
	onClicked
}

Future Work #

Implement iOS Banner ads

15
likes
0
pub points
45%
popularity

Publisher

verified publisheranavrinapps.com

Flutter plugin for AdColony ads (support for both Android & iOS)

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on adcolony_flutter