为什么“在Android中添加Admob广告时出错”?

时间:2019-02-23 05:18:35

标签: android admob

尝试在我的应用中添加Google广告。

这是应用程序级build.gradle 文件:

apply plugin: 'com.android.application'
android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "com.example.student.shopifysalespediasample"
        minSdkVersion 16
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    sourceSets { main { assets.srcDirs = ['src/main/assets', 'src/main/assets/'] } }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support:design:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.google.android.gms:play-services-ads:17.1.1'
}

在这一行中我收到一个错误

 implementation 'com.google.android.gms:play-services-ads:17.1.1'

错误显示:

所有gms / firebase库必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到版本17.1.1,16.0.4,16.0.3,16.0.1,16.0.0。示例包括com.google.android.gms:play-services-ads:17.1.1和com.google.android.gms:play-services-measurement-base:16.0.4

请帮助,我的应用程序即将完成。添加广告的最后一步仍然是。非常感谢您的帮助。 谢谢!

2 个答案:

答案 0 :(得分:0)

如果您以前有任何admob代码,请将其删除。当您为广告编写较旧的代码然后更新依赖关系时,通常会导致此问题。

如何修复

  1. 删除所有旧的admob代码。
  2. 将依赖关系更新为最新。
  3. Take a good read at this

确保您采用的是实施广告的新方法。

答案 1 :(得分:0)

您的依赖版本不同,请使用此依赖

implementation 'com.google.android.gms:play-services-ads:16.0.0'