Questions tagged [google-mobile-ads]

180 questions
13
votes
2 answers

Google AdMob new SDK setup for iOS : SKAdNetworkItems, NSUserTrackingUsageDescription, ATTrackingManager. Guideline 5.1.2 - Legal - Privacy - Data Use

Google AdMob now shows below warning. Prepare your apps for iOS 14 Apple announced the new AppTrackingTransparency framework, which requires changes to your iOS apps. Implement the GMA SDK 7.64.0 (or later) and set up consent messaging to help…
Guru
  • 21,652
  • 10
  • 63
  • 102
7
votes
1 answer

AdMob not serving ads on iOS release. Error code 8, Cannot find an ad network adapter with the name(s): ("com.google.DummyAdapter")

Whenever I try to load an ad on the release version of my iOS app, I get the following admob error: Cannot find an ad network adapter with the name(s): ("com.google.DummyAdapter"). Remember to link all required ad network adapters and SDKs, and set…
Niek
  • 187
  • 1
  • 8
7
votes
1 answer

Google mobile Ads implementation slowed down flutter App

I've been implementing a banner ad on my flutter app and I manage to show the banner successfully but my app goes really slow to the point it then crashes and closes. I've been looking quite a lot for a solution to this problem but can't seem to…
ansp1991
  • 71
  • 3
7
votes
1 answer

Google Mobiles Ads Creative Preview not working

I am new to Mobile Ads. I am loading an Ad in PublisherAdView. I am successfully able to load Ad as I am getting the callback in onAdLoaded(). The following are the logs that say Ad load successfully. I/CommonAdsUtility: loadCarouselSearchScreen()…
6
votes
3 answers

Test Rewarded ad not displaying - Ad failed to load: LoadAdError(code: 3, domain: com.google.android.gms.ads, message: No ad config.)

I'm currently unable to display a test rewarded ad. I am using the rewarded ad Sample ad unit ID provided in the doc: ca-app-pub-3940256099942544/5224354917. I am getting error code 3, which according to the documentation: The ad request was…
lenz
  • 2,193
  • 17
  • 31
5
votes
0 answers

Flutter: show rewardedAd when it is loaded

To show the ad I do this: await adState.showRewardedAd(); await adState.rewardedAd!.show(onUserEarnedReward: (RewardedAd ad, RewardItem reward) { // reward }); and: Future createRewardedAd([bool showVideo = false]) async { await…
Dani
  • 3,128
  • 2
  • 43
  • 91
5
votes
0 answers

Google-Mobile-Ads-SDK fails with initialization error while used in both main app and framework

I've an iOS app which has a framework in it. Framework is being used in main app. Both main app and framework need to use Google-Mobile-Ads-SDK for loading ads. Here is podfile: platform :ios, '10.0' target 'MyFramework' do use_frameworks! …
D4ttatraya
  • 3,344
  • 1
  • 28
  • 50
5
votes
2 answers

How to show multiple google native ad in flutter

I am trying to call an ad dynamically in a listview but throws this error : If you placed this AdWidget in a list, make sure you create a new instance in the builder function with a unique ad object. Make sure you are not using the same ad object in…
Brian Tum
  • 51
  • 5
5
votes
0 answers

GADNativeAdView not showing Outlet on version 8.0 Google Mobile Ads SDK ios

Before version 8.0 , that was work with GADUnifiedNativeAdView . but after updating to 8.0 that not showing outlet for GADNativeAdView. please see the attached screenshot below. Please Help
Divyesh Dobariya
  • 125
  • 1
  • 15
5
votes
0 answers

Stop Google Mobile Ads SDK transfer private data on iOS

I successfully run ads in my app using the Google Mobile Ads SDK. Therefore I imported the following SDK frameworks into my Xcode…
4
votes
0 answers

Flutter: How to display the google_mobile_ads banner on all pages, without write the code on every page like the firebase_admob plugin?

This article is for those who have difficulty migrating from the firebase_admob plugin to google_mobile_ads. for convenience I will abbreviate the name firebase_admob as FA, and google_mobile_ads as GMA. As we know that the FA plugin has been…
Ary Anzh
  • 406
  • 3
  • 15
4
votes
0 answers

Admob Ad Banner reduilding the entire screen when it refreshes

I have recently added admob test ad banner in my app,but it rebuilding the whole screen when it refresh to load new impression.I used a largeBanner as AdSize Here is my code. BannerAd _bannerAd; bool _isBannerAdReady = false; @override void…
4
votes
3 answers

how to place ads below or above BottomNavigationBar in Flutter

I want to place google_mobile_ads Banner Ad just above or below the BottomNavigationBar in Flutter. I tried to place the BottomNavigationBar in Container ad add Margin, but there is no option to add 2 children inside the Container. I tried to add a…
4
votes
2 answers

Flutter google mobile ads only shows test ads on IOS

I have the following ad Repository import 'package:google_mobile_ads/google_mobile_ads.dart'; import 'dart:io'; import 'package:flutter/foundation.dart'; import 'package:my_app/data/api/constants.dart'; class AdMobRepository { late String…
anonymous-dev
  • 2,897
  • 9
  • 48
  • 112
4
votes
4 answers

"No ad config" error onAdFailedToLoad even with test ad unit

Android (Java) way: Minimal reproducible code: public class MainActivity extends Activity { private static final String TAG = "MyTag"; @Override protected void onCreate(Bundle savedInstanceState) { …
iDecode
  • 22,623
  • 19
  • 99
  • 186
1
2 3
11 12