Last updated:
0 purchases
simple ads manager
✅ simple_ads_manager #
Google Mobile Ads for Flutter Using AdMob #
Platform Support #
Android
iOS
✅
✅
Usage #
Follow the easy and fast 4 steps to use the package.
Step 1: Add the package to your project #
dependencies:
simple_ads_manager: ^0.0.2
copied to clipboard
Step 2: Ad Units #
Create a json file in the assets folder (download json file)
Add <meta-data> to the AndroidManifest.xml file
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="REPLACE_WITH_YOUR_APP_ID"/>
copied to clipboard
Add GADApplicationIdentifier to the Info.plist file for IOS
<key>GADApplicationIdentifier</key>
<string>REPLACE_WITH_YOUR_APP_ID</string>
copied to clipboard
Step 3: Initialize the plugin #
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
await SimpleAdsManager.instance.setAdUnits("ads.json");
await SimpleAdsManager.instance.init(appOpen: true, interstitial: true, rewarded: true);
runApp(const MyApp());
}
copied to clipboard
Step 4: Show Ads #
//show banner
SimpleAdsManager.instance.showBanner()
//show interstitial
SimpleAdsManager.instance.showInterstitialAd(context, () => {})
//show rewarded
SimpleAdsManager.instance.showRewardedAd(context, (reward) => {});
// show app open
SimpleAdsManager.instance.showAppOpenAd(context, () => {});
// show app open on app resume
SimpleAdsManager.instance.enableAutoAppOpenAdFeature(context);
copied to clipboard
Author #
Eng. Zeeshan Ali #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.