All Questions
Tagged with google-mobile-ads kotlin
5 questions
0
votes
0
answers
41
views
Contradictory error when using MobileAds in an Android app
I am somewhat confused by an error showing up in an Android app, where I want to use MobileAds.
Here is the Kotlin code:
val adRequest = AdRequest.Builder().build()
adView.loadAd(adRequest)
The ...
1
vote
1
answer
900
views
MobileAds: Add Permission INTERNET
While trying to make MobileAds work in an Android app of mine I have the following issue:
Although the AndroidManifest.xml file contains this line:
<uses-permission android:name="android....
0
votes
1
answer
391
views
Kotlin Documentation is missing for google_mobile_ads, flutter
I am using google_mobile_ads for displaying ads in my flutter application. Both (interstitial & banner) are working as expected.
Now I am adding Native Ads, I followed the documentation here, but ...
2
votes
2
answers
6k
views
Crash on MobileAds.initialize(this) Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR)
As of today I've started getting this error:
A/libc: Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0 in tid 31968
on some devices when MobileAds.initialize(this) is called. If I ...
0
votes
1
answer
1k
views
MobileAds.getRequestConfiguration unresolved reference
I need to change MobileAds request configuration but am getting Unresolved reference: getRequestConfiguration error.
var requestConfiguration = MobileAds.getRequestConfiguration().toBuilder()
....