AdMob banner ad not showing

后端 未结 8 1472
死守一世寂寞
死守一世寂寞 2021-01-07 23:33

I am using admob in my app, it was working fine but suddenly it stopped showing ads at all. Bellow is my codes i used:

mainActivity.xml:



        
8条回答
  •  爱一瞬间的悲伤
    2021-01-08 00:16

    In my case, I had the code below under the buildscript section of the project level build.gradle

    Make sure maven {url "https://maven.google.com"} is under allProjects > repositories:

    allprojects {
        repositories {
            jcenter()
            maven {
                url "https://maven.google.com"
            }
        }
    }
    

提交回复
热议问题