0 purchases
bilmobileadsflutter
bilmobileadsflutter #
A flutter plugin for integrate ValueImpressionSDK.
Getting Started #
BilMobileAdsFlutter #
[pub.dev]
A Flutter plugin that uses native platform views to show Banner ads!. This plugin also has support for Interstitial and Reward ads.
Installation #
Add this to your package's pubspec.yaml file:
dependencies:
bilmobileadsflutter: "LATEST_VERSION"
copied to clipboard
And you can install packages from the command line:
flutter pub get
copied to clipboard
iOS Specific Setup #
Update your Info.plist.
<key>GADIsAdManagerApp</key>
<true/>
copied to clipboard
Android Specific Setup #
Initialize the plugin #
First thing to do before attempting to show any ads is to initialize the plugin. You can do this in the earliest starting point of your app, your main or initState function:
import 'package:bilmobileadsflutter/PBMobileAds.dart';
@override
void initState() {
super.initState();
// Initialize SDK: testMode = true for test ads
PBMobileAds.initialize(testMode: false);
}
copied to clipboard
Supported Platforms #
iOS: >= 11.0
Android >= 19
Supported Ads for ValueImpressionSDK #
Banner Ads
Interstitial Ads
Reward Ads
`
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.