github googleads/googleads-mobile-flutter v1.0.0

latest releases: v4.0.0, v3.1.0, v3.0.0...
2 years ago
  • 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'});
        
  • The development guides in the README have been migrated to the AdMob and Ad Manager dev sites.

Don't miss a new googleads-mobile-flutter release

NewReleases is sending notifications on new releases.