Admob implementation Error

后端 未结 7 968
独厮守ぢ
独厮守ぢ 2020-11-29 01:04

I got a Problem with implementing Admob into an App.

This is my main.xml:



        
7条回答
  •  孤独总比滥情好
    2020-11-29 01:23

    if you use AndroidStudio and Gradle, you must also update the build.gradle file like this:

    android {
        compileSdkVersion 17
        buildToolsVersion "18.0.1"
    
        defaultConfig {
            minSdkVersion 3
            targetSdkVersion 17
        }
    ...
    

提交回复
热议问题