google_mobile_ads 5.0.0 copy "google_mobile_ads: ^5.0.0" to clipboard
google_mobile_ads: ^5.0.0 copied to clipboard

Flutter plugin for Google Mobile Ads, supporting banner, interstitial (full-screen), rewarded and native ads

5.0.0 #

  • Adds MediationExtras class to include parameters when using mediation through the implementation of FlutterMediationExtras in Android and FlutterMediationExtras in iOS.
  • Deprecates MediationNetworkExtrasProvider and FLTMediationNetworkExtrasProvider.
  • Removed the orientation parameter for the AppOpen Ad format.
  • Bumps minimum Android SDK version to 21.
  • Updates GMA iOS dependency to 11.2.0
  • Updates GMA Android dependency to 23.0.0

4.0.0 #

3.1.0 #

3.0.0 #

2.4.0 #

  • Adds support for native templates, which are predefined layouts for native ads.
    • NativeAd has a new optional parameter, nativeTemplateStyle of type NativeTemplateStyle. If provided, the plugin will inflate and style a platform native ad view for you, instead of requiring you to write and register a NativeAdFactory (android) or FLTNativeAdFactory (iOS).
  • Adds a new flag, AdWidget.optOutOfVisibilityDetectorWorkaround. Setting this to true lets you opt out of the fix added for https://github.com/googleads/googleads-mobile-flutter/issues/580, which was resolved in Flutter 3.7.0.

2.3.0 #

  • Updates GMA iOS dependency to 9.13
  • Updates GMA Android dependency to 21.3.0
  • Updates request agent string based on metadata in AndroidManifest.xml or Info.plist

2.2.0 #

2.1.0 #

  • Updates GMA dependencies to 21.2.0 (Android) and 9.10.0 (iOS):
  • Adds loadedAdapterResponseInfo to ResponseInfo and the following fields to AdapterResponseInfo:
    • adSourceID
    • adSourceInstanceId
    • adSourceInstanceName
    • adSourceName
  • Fixes close button issue on iOS

2.0.1 #

  • Bug fix for issue 580. Adds a workaround on Android to wait for the ad widget to become visible before attaching the platform view.

2.0.0 #

  • Updates GMA Android dependency to 21.0.0 and iOS to 9.6.0
  • Removes credentials from AdapterResponseInfo, which is replaced with adUnitMapping.
  • Removes serverSideVerificationOptions from RewardedAd.load() and RewardedInterstitialAd.load(), replacing them with setters RewardedAd.setServerSideVerificationOptions() and RewardedInterstitialAd.setServerSideVerificationOptions(). This lets you update the ssv after the ad is loaded.
  • Removes static testAdUnitId parameters. See the Admob and AdManager documentation for up to date test ad units.
  • Removes NativeAdListener.onNativeAdClicked. You should use onAdClicked instead, which present on all ad listeners.
  • Removes AdRequest.location

1.3.0 #

  • Adds support for programmatically opening the debug options menu usingMobileAds.openDebugMenu(String adUnitId)
  • Adds support for Ad inspector APIs. See the AdMob and Ad Manager sites for integration guides.
  • Adds support for User Messaging Platform. See the AdMob and Ad Manager sites for integration guides.

1.2.0 #

  • Set new minimum height for FluidAdWidget. This is required after Flutter v2.11.0-0.1.pre because Android platform views that have no size don't load.
  • Update GMA Android dependency to 20.6.0 and iOS to 8.13.0.
  • Deprecate AdapterResponseInfo.credentials in favor of adUnitMapping
  • Deprecates LocationParams in AdRequest and AdManagerAdRequest.

1.1.0 #

  • Adds support for Rewarded Interstitial (beta) ad format.
  • Adds support for onAdClicked events to all ad formats. NativeAdListener.onNativeAdClicked is now deprecated.
    • FullScreenContentCallback and AdWithViewListeners now have an onAdClicked event.

1.0.1 #

  • Fix for Issue 449. In LocationParams, time is now treated as an optional parameter on Android.
  • Fix for Issue 447, which affected mediation networks that require an Activity to be initialized on Android.

1.0.0 #

  • Mediation is now supported in beta.

  • Fix for Android 12 issue #330

    • This will break compilation on android if you do not already set compileSdkVersion to 31, or override the WorkManager dependency to < 2.7.0:
      dependencies {
          implementation('androidx.work:work-runtime') {
              version {
                  strictly '2.6.0'
              }
          }
      }
      
  • Fixes issue #404

    • Adds a new dart class, AppStateEventNotifier. You should subscribe to AppStateEventNotifier.appStateStream instead of using WidgetsBindingObserver to listen to app foreground/background events.
    • See the app open example app for a reference on how to use the new API.
  • Adds a new parameter extras to AdRequest and AdManagerAdRequest.

    • This can be used to pass additional signals to the AdMob adapter, such as CCPA signals.
    • For example, to notify Google that RDP should be enabled when constructing an ad request:
        AdRequest request = AdRequest(extras: {'rdp': '1'});
      

0.13.6 #

  • Partial fix for #265.
    • The partial fix allows you to load ads from a cached flutter engine in the add to app scenario, but it only works the first time the engine is attached to an activity.
    • Support for reusing the engine in another activity after the first one is destroyed is blocked by this Flutter issue which affects all platform views: https://github.com/flutter/flutter/issues/88880.
  • Adds support for getRequestConfiguration API
  • Adds support for Fluid Ad Size (Ad Manager only)
    • Fluid ads dynamically adjust their height based on their width. To help display them we've added a new ad container, FluidAdManagerBannerAd, and a new widget FluidAdWidget.
    • You can see the fluid_example.dart for a reference of how to load and display a fluid ad.
    • Android API reference
    • iOS API reference
  • Adds AdSize.getCurrentOrientationAnchoredAdaptiveBannerAdSize() to support getting an AnchoredAdaptiveBannerAdSize in the current orientation.
    • Previously the user had to specify an orientation (portrait / landscape) to create an AnchoredAdaptiveBannerAdSize. It has been made optional with this version. SDK will determine the current orientation of the device and return an appropriate AdSize.
    • More information on anchored adaptive banners can be found here:
  • Adds support for inline adaptive banner ads.
    • Inline adaptive banner ads are meant to be used in scrollable content. They are of variable height and can be as tall as the device screen. They differ from Fluid ads in that they only resize once when the ad is loaded. You can see the inline_adaptive_example.dart for a reference of how to load and display inline adaptive banners.
    • More information on inline adaptive banners can be found here:
  • Fix for #369
    • Fixes setting the app volume in android (doesn't affect iOS).
  • Adds support for setting location in AdRequest and AdManagerAdRequest.
    • Both AdRequest and AdManagerAdRequest have a new param, location.
    • Location data is not used to target Google Ads, but may be used by 3rd party ad networks.
    • See other packages for getting the location. For example, https://pub.dev/packages/location.
  • Adds publisherProvidedId to AdManagerAdRequest to support publisher provided ids.

0.13.5 #

  • Adds support for app open.
    • Implementation guidance can be found here.
    • As a reference please also see the example app.
    • Best practices can be found here.

0.13.4 #

0.13.3 #

  • Adds support for NativeAdOptions. More documentation also available for Android and iOS

0.13.2+1 #

0.13.2 #

0.13.1 #

  • Adds support for the paid event callback.

0.13.0 #

  • Updates GMA Android and iOS dependencies to 20.1.0 and 8.5.0, respectively.
  • Renames APIs that use the Publisher prefix to AdManager.
  • Rewarded and Interstitial ads now provide static load methods and a new FullScreenContentCallback for full screen events.
  • Native ads use GADNativeAdView for iOS and NativeAdView on Android.
  • Adds support for ResponseInfo.
  • Adds support for same app key on iOS.
  • Removes testDevices from AdRequest. Use MobileAds.updateRequestConfiguration to set test device ids.
  • Removes Ad.isLoaded(). Instead you should use the onAdLoaded callback to track whether an ad is loaded.
  • Removes need to call Ad.dispose() for Rewarded and Interstitial ads when they fail to load.

0.12.2+1 #

  • Fix anchored adaptive banner message corruption error.
  • Update example app with better practices and adaptive banner.

0.12.2 #

  • Add support for anchored adaptive banners.

0.12.1+1 #

0.12.1 #

0.12.0 #

  • Migrated to null safety. Minimum Dart SDK version is bumped to 2.12.0.

0.11.0+4 #

  • Fixes a bug where state is not properly cleaned up on hot restart.
  • Update README and example app to appropriately dispose ads.

0.11.0+3 #

  • Fixes an Android crash when reusing Native and Banner Ad objects.
  • Fixes iOS memory leaks.
  • Adds a section on Ad Manager to the README.
  • Updates iOS setup in the README to include SKAdNetwork.

0.11.0+2 #

  • Set min Android version to 19.
  • Fixes bug that displayed "This AdWidget is already in the Widget tree".
  • Update minimum gradle version.
  • Add references to the codelab in the README.

0.11.0+1 #

  • Improve AdRequest documentation and fix README heading.

0.11.0 #

Open beta release of the Google Mobile Ads Flutter plugin. Please see the README for updated integration steps.

  • Package and file names have been renamed from firebase_admob to google_mobile_ads.

  • Removes support for legacy plugin APIs.

  • Removes Firebase dependencies.

  • Adds support for RequestConfiguration targeting APIs.

  • Adds support for Ad Manager key values, via the new Publisher ad containers. See PublisherBannerAd and similar classes.

  • Shows warning if an Ad object is reused without being disposed.

  • Removes support for V1 embedding.

  • Add version to request agent.

0.10.0 #

  • Old Plugin API has been moved to lib/firebase_admob_legacy.dart. To keep using the old API change import 'package:firebase_admob/firebase_admob.dart'; to import 'package:firebase_admob/firebase_admob_legacy.dart';.

  • Updated RewardedAd to the latest API. Instantiating and displaying a RewardedAd is now similar toInterstitialAd. See README for more info. A simple example is shown below.

final RewardedAd myRewardedAd = RewardedAd(
  adUnitId: RewardedAd.testAdUnitId,
  request: AdRequest(),
  listener: AdListener(
    onAdLoaded: (Ad ad) => (ad as RewardedAd).show(),
  ),
);
myRewardedAd.load();
  • Replacement of MobileAdEvent callbacks with improved AdListener.
BannerAd(
 listener: (MobileAdEvent event) {
   print("BannerAd event $event");
 },
);

can be replaced by:

BannerAd(
  listener: AdListener(
    onAdLoaded: (Ad ad) => print('$BannerAd loaded.'),
    onAdFailedToLoad: (Ad ad) => print('$BannerAd failed to load.'),
  ),
);
  • MobileAdTargeting has been renamed to AdRequest to keep consistent with SDK.

  • MobileAd has been renamed to Ad.

  • Fix smart banners on iOS.

    • AdSize.smartBanner is for Android only.
    • AdSize.smartBannerPortrait and AdSize.smartBannerLandscape are only for iOS.
    • Use Adsize.getSmartBanner(Orientation) to get the correct value depending on platform. The orientation can be retrieved using a BuildContext:
Orientation currentOrientation = MediaQuery.of(context).orientation;
  • Removal of show() for BannerAd and NativeAd since they can now be displayed within a widget tree.
  • Showing of InterstitialAd and RewardedAd should now wait for AdListener.onAdLoaded callback before calling show() as best practice:
InterstitialAd(
  adUnitId: InterstitialAd.testAdUnitId,
  targetingInfo: targetingInfo,
  listener: (MobileAdEvent event) {
    print("InterstitialAd event $event");
  },
)
  ..load()
  ..show();

can be replaced by:

final InterstatialAd interstitial = InterstatialAd(
  adUnitId: InterstatialAd.testAdUnitId,
  request: AdRequest(),
  listener: AdListener(
    onAdLoaded: (Ad ad) => (ad as InterstatialAd).show(),
  ),
)..load();
  • Ad.load() no longer returns a boolean that only confirms the method was called successfully.

0.9.3+4 #

  • Bump Dart version requirement.

0.9.3+3 #

  • Provide a default MobileAdTargetingInfo for RewardedVideoAd.load(). RewardedVideoAd.load() would inadvertently cause a crash if MobileAdTargetingInfo was excluded.

0.9.3+2 #

  • Fixed bug related to simultaneous ad loading behavior on iOS.

0.9.3+1 #

  • Modified README to reflect supporting Native Ads.

0.9.3 #

  • Support Native Ads on iOS.

0.9.2+1 #

  • Added note about required Google Service config files.

0.9.2 #

  • Add basic Native Ads support for Android.

0.9.1+3 #

  • Replace deprecated getFlutterEngine call on Android.

0.9.1+2 #

  • Make the pedantic dev_dependency explicit.

0.9.1+1 #

  • Enable custom parameters for rewarded video server-side verification callbacks.

0.9.1 #

  • Support v2 embedding. This will remain compatible with the original embedding and won't require app migration.

0.9.0+10 #

  • Remove the deprecated author: field from pubspec.yaml
  • Migrate the plugin to the pubspec platforms manifest.
  • Bump the minimum Flutter version to 1.10.0.

0.9.0+9 #

  • Updated README instructions for contributing for consistency with other Flutterfire plugins.

0.9.0+8 #

  • Remove AndroidX warning.

0.9.0+7 #

  • Update Android gradle plugin, gradle, and Admob versions.
  • Improvements to the Android implementation, fixing warnings about a possible null pointer exception.
  • Fixed an issue where an advertisement could incorrectly remain displayed when transitioning to another screen.

0.9.0+6 #

  • Remove duplicate example from documentation.

0.9.0+5 #

  • Update documentation to reflect new repository location.

0.9.0+4 #

  • Add the ability to horizontally adjust the ads banner location by specifying a pixel offset from the centre.

0.9.0+3 #

  • Update google-services Android gradle plugin to 4.3.0 in documentation and examples.

0.9.0+2 #

  • On Android, no longer crashes when registering the plugin if no activity is available.

0.9.0+1 #

  • Add missing template type parameter to invokeMethod calls.
  • Bump minimum Flutter version to 1.5.0.

0.9.0 #

  • Update Android dependencies to latest.

0.8.0+4 #

  • Update documentation to add AdMob App ID in Info.plist
  • Add iOS AdMob App ID in Info.plist in example project

0.8.0+3 #

  • Log messages about automatic configuration of the default app are now less confusing.

0.8.0+2 #

  • Remove categories.

0.8.0+1 #

  • Log a more detailed warning at build time about the previous AndroidX migration.

0.8.0 #

  • Breaking change. Migrate from the deprecated original Android Support Library to AndroidX. This shouldn't result in any functional changes, but it requires any Android apps using this plugin to also migrate if they're using the original support library.

0.7.0 #

  • Mark Dart code as deprecated where the newer version AdMob deprecates features (Birthday, Gender, and Family targeting).
  • Update gradle dependencies.
  • Add documentation for new AndroidManifest requirements.

0.6.1+1 #

  • Bump Android dependencies to latest.
  • THIS WAS AN UNINTENTIONAL BREAKING CHANGE. Users should consume 0.6.1 instead if they need the old API, or 0.7.0 for the bumped version.
  • Guide how to fix crash with admob version 17.0.0 in README

0.6.1 #

  • listener on MobileAd shouldn't be final.
  • Ad listeners can to be set in or out of Ad initialization.

0.6.0 #

  • Add nonPersonalizedAds option to MobileAdTargetingInfo

0.5.7 #

  • Bumped mockito dependency to pick up Dart 2 support.

0.5.6 #

  • Bump Android and Firebase dependency versions.

0.5.5 #

  • Updated Gradle tooling to match Android Studio 3.1.2.

0.5.4+1 #

  • Graduate to beta.

0.5.4 #

  • Fixed a bug that was causing rewarded video failure event to be called on the wrong listener.

0.5.3 #

  • Updated Google Play Services dependencies to version 15.0.0.
  • Added handling of rewarded video completion event.

0.5.2 #

  • Simplified podspec for Cocoapods 1.5.0, avoiding link issues in app archives.

0.5.1 #

  • Fixed Dart 2 type errors.

0.5.0 #

  • Breaking change. The BannerAd constructor now requires an AdSize parameter. BannerAds can be created with AdSize.smartBanner, or one of the other predefined AdSize values. Previously BannerAds were always defined with the smartBanner size.

0.4.0 #

  • Breaking change. Set SDK constraints to match the Flutter beta release.

0.3.2 #

  • Fixed Dart 2 type errors.

0.3.1 #

  • Enabled use in Swift projects.

0.3.0 #

  • Added support for rewarded video ads.
  • Breaking change. The properties and parameters named "unitId" in BannerAd and InterstitialAd have been renamed to "adUnitId" to better match AdMob's documentation and UI.

0.2.3 #

  • Simplified and upgraded Android project template to Android SDK 27.
  • Updated package description.

0.2.2 #

  • Added platform-specific App IDs and ad unit IDs to example.
  • Separated load and show functionality for interstitials in example.

0.2.1 #

  • Use safe area layout to place ad in iOS 11

0.2.0 #

  • Breaking change. MobileAd TargetingInfo requestAgent is now hardcoded to 'flutter-alpha'.

0.1.0 #

  • Breaking change. Upgraded to Gradle 4.1 and Android Studio Gradle plugin 3.0.1. Older Flutter projects need to upgrade their Gradle setup as well in order to use this version of the plugin. Instructions can be found here.
  • Relaxed GMS dependency to [11.4.0,12.0[

0.0.3 #

  • Add FLT prefix to iOS types
  • Change GMS dependency to 11.4.+

0.0.2 #

  • Change GMS dependency to 11.+

0.0.1 #

  • Initial Release: not ready for production use
2122
likes
125
pub points
99%
popularity

Publisher

verified publishergoogle.dev

Flutter plugin for Google Mobile Ads, supporting banner, interstitial (full-screen), rewarded and native ads

Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter, meta, webview_flutter, webview_flutter_android, webview_flutter_wkwebview

More

Packages that depend on google_mobile_ads