flutter_google_ad_manager icon indicating copy to clipboard operation
flutter_google_ad_manager copied to clipboard

Flutter plugin for Google Ad Manager(DFP).

Results 21 flutter_google_ad_manager issues
Sort by recently updated
recently updated
newest added

Swift Compiler Error (Xcode): Cannot find type 'DFPBannerView' in scope /Users/user214838/Desktop/flutter/.pub-cache/hosted/pub.dartlang.org/flutte r_google_ad_manager-0.11.1/ios/Classes/BannerView.swift:71:51 Swift Compiler Error (Xcode): Cannot find type 'GADRequestError' in scope /Users/user214838/Desktop/flutter/.pub-cache/hosted/pub.dartlang.org/flutte r_google_ad_manager-0.11.1/ios/Classes/BannerView.swift:128:51 Swift Compiler Error (Xcode): Cannot find...

/Users/mac/Documents/fluttersdk/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_google_ad_manager-0.11.1/ios/Classes/InterstitialAd.swift:4:33: error: cannot find type 'DFPInterstitial' in scope private var interstitialAd: DFPInterstitial? ^~~~~~~~~~~~~~~ /Users/mac/Documents/fluttersdk/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_google_ad_manager-0.11.1/ios/Classes/InterstitialAd.swift:4:33: error: cannot find type 'DFPInterstitial' in scope private var interstitialAd: DFPInterstitial? ^~~~~~~~~~~~~~~ /Users/mac/Documents/fluttersdk/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_google_ad_manager-0.11.1/ios/Classes/InterstitialAd.swift:68:27: error: cannot find...

Are there any plans for an update to support the latest Google Mobile Ads SDK and specifically IDFA considerations for iOS 14? Also somewhat related the current version generates quite...

## Overview Implemented Custom Native Ad. ## Custom Native Ads Firstly `load` it at the desired timing. ```dart DFPNativeAd _nativeAd; @override void initState() { super.initState(); _nativeAd = DFPNativeAd( isDevelop: false,...

Hello, you know the ad manager has a big change soon. I will add swift code and fix all problem.

### **// this is my widget using real adUnitId** DFPBanner( isDevelop: false, adUnitId: '/XXXXXX/XXXXXXX/XXXXXX', adSize: DFPAdSize.custom(height: 250,width: 360,), testDevices: MyTestDevices(), onAdLoaded: () { print('Banner onAdLoaded'); }, onAdFailedToLoad: (errorCode) { print('Banner...

## Overview Fixed an error in the "onRewarded" callback function on iOS. ## Modifications - A typo in the "type" key in the native code ( `"yype" -> "type"` )...

I have a big issue that my app has BottomNaviagation and once i tapped on any item and the current Widget has DFPAdBanner partially appear on screen and the other...

duplicate

Hi, I'm facing poor app performance or stuttering animations in a long list view with big images when place ads in between the list. If I remove the ads the...

bug

My app will show a DFPBanner in different pages, if I keep do Navigator push/pop these pages(over 30 times), the iphone is slowing down, it seems memory leak? Could you...