Questions tagged [google-mobile-ads]
180 questions
4
votes
1 answer
No such module 'GoogleMobileAds'
After upgrading Google Mobile SDK 8.0 via Cocoapods, Xcode throws me error 'No such Module 'GoogleMobileAds'.
I did my search but nothing helped me so far.
I already did these steps:
rm -rf ~/Library/Caches/CocoaPods
rm -rf Pods
rm -rf…

Emin Turk
- 350
- 3
- 13
3
votes
1 answer
Undefined symbol: _GADUnifiedNativeIconAsset for GoogleMobileAds
I am getting the below error after migrating to version 9.5.0.
Undefined symbols for architecture x86_64:
"_GADUnifiedNativeIconAsset", referenced from:
-[GADFBNativeBannerAd…

sejn
- 2,040
- 6
- 28
- 82
3
votes
0 answers
Flutter Google Ads for iOS showing a temporary Interstitial for NativeAd in ListView
I've migrated to the new Google Mobile Ads package in Flutter. My interstitial works perfectly but my Native ad show a temporary ad over the majority of my screen before loading into my ListView Container awaiting it with a FutureBuilder. If I…

Charles Jr
- 8,333
- 15
- 53
- 74
3
votes
1 answer
Not able to display native ads in listView.builder in flutter?
Future main() async {
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp();
final initFuture = MobileAds.instance.initialize();
final adState = Adv(initFuture);
…

Siddharth Porwal
- 41
- 5
3
votes
1 answer
Flutter admob ads not showing. Ad Failed to load : 3
Admob's test ads or normal ads not showing on my flutter app. My ad requests return this error: 'Ad failed to load: 3'. I search this error code and found it:
The ad request was successful, but no ad was returned due to lack of ad…

sabenburra
- 93
- 1
- 3
- 6
3
votes
0 answers
Flutter FATAL EXCEPTION error when loading RewardedAds. java.lang.InstantiationError: com.google.android.gms.ads.rewarded.RewardedAd
So I'm using google_mobile_ads plugin version 0.12.1+1 (which is the latest one at this point).
I encountered a strange error and I have tried many things to fix it for the last 3 days without any success.
Please note that it was WORKING and the App…

Zenko
- 2,319
- 2
- 20
- 46
3
votes
1 answer
Google Ads 8.0 Interstitial SwiftUI
Seems like there isn't many examples of using Google MobileAdsSDK 8.0 (iOS) with SwiftUI.
So far I have a class Interstitial
import GoogleMobileAds
import UIKit
final class Interstitial:NSObject, GADFullScreenContentDelegate{
var…

snoop168
- 394
- 3
- 16
3
votes
0 answers
Is merely requesting app transparency permissions sufficient for ensuring google mobile ads are iOS14 compliant?
We have an app that shows Google banner, interstitial and reward ads. In iOS14 there are new requirements for App Tracking. This impacts Google Mobile ads as described here: https://developers.google.com/admob/ios/ios14. We've implemented all their…

tomblah
- 791
- 3
- 9
- 21
3
votes
0 answers
Does Admob (with SKAdNetwork support) still do data collection (with regards to App privacy details on the App Store)?
With Apple's latest announcement on 5 November 2020 for developers to provide information about their app's privacy practices, I was wondering if with the latest Google Mobile Ads SDK, do I still need to disclose "Third-party partners" such as…

Barny Lui
- 87
- 8
3
votes
2 answers
How do I use the Google Mobile Ads SDK in SwiftUI, or use the UIKit UIViewController within a SwiftUI view?
I have a SwiftUI view that I want to open a rewarded ad from the Google Mobile Ads SDK when I press a button. The instructions for loading the ads (https://developers.google.com/admob/ios/rewarded-ads#create_rewarded_ad) are in UIKit, and I'm…

Mira
- 131
- 1
- 9
3
votes
6 answers
ArgumentException: Requested value 'X86' was not found
i try to import GoogleMobileAds sdk to unity. when i import PlayServicesResolver package, i am getting error on console like this 'ArgumentException: Requested value 'X86' was not found.' I cant figure out why?
ArgumentException: Requested value…

Mathilorian
- 73
- 2
- 2
- 7
2
votes
0 answers
What's the right implementation of google_mobile_ads in flutter with riverpod?
Plugin Version
google_mobile_ads: ^3.0.0
Steps to Reproduce
GoogleAdsService.dart
import 'dart:io';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:google_mobile_ads/google_mobile_ads.dart';
import…

Abdullah Khan
- 1,365
- 15
- 15
2
votes
1 answer
What should be put inside onConsentFormDismissed method of UMP SDK?
I have followed the official Android Doucumentation to implement UMP.
This is the code I have:
public class MainActivity extends AppCompatActivity {
private ConsentInformation consentInformation;
private ConsentForm consentForm;
@Override
…

pequeñaluna
- 35
- 3
2
votes
2 answers
Optimize Google mobile ad initialization and loading on Flutter
I am using google_mobile_ads Flutter package (version ^3.0.0) in a Flutter app targeting Android. I am occasionally getting ANRs that could be related to ads.
This article talks about optimizing Google mobile ads initialization and loading on…

under
- 2,519
- 1
- 21
- 40
2
votes
1 answer
Ad impressions are not count when AdManagerAdView is used with Jetpack Compose
I recently converted a screen to Jetpack Compose, and Ad team reported that they observe a significant fall in ad impressions. I wrapped AdManagerAdView in a Compose AndroidView and ads are loaded and shown on the screen successfully. But when I…

Oya Canli
- 1,996
- 1
- 15
- 27