首页 > 解决方案 > 无法导入 com.google.android.gms:play-services-ads:17.1.1

问题描述

apply plugin: 'com.android.application'
   android {
   compileSdkVersion 28

   defaultConfig {
      applicationId "com.kaiboon0216gmail.homeownerstarterkit"
      minSdkVersion 21
      targetSdkVersion 28
      versionCode 1
      versionName "1.0"
      testInstrumentationRunner 
      "android.support.test.runner.AndroidJUnitRunner"
    } 
    buildTypes {
       release {
          minifyEnabled false
          proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
       }
    }
}


dependencies {
   implementation fileTree(dir: 'libs', include: ['*.jar'])
   implementation 'com.android.support:appcompat-v7:28.0.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.android.support:cardview-v7:28.0.0'
   implementation 'com.google.android.gms:play-services-ads:17.1.1'
}

这些是我的代码。我正在使用 Admob 在我的应用中显示广告。当我添加此代码:“ 'com.google.android.gms:play-services-ads:17.1.1'”并同步时,我的应用碰撞。

之后我去 Admob 官网,发现这个版本是'com.android.support:appcompat-v7:26.1.0'版本。但是当我将compileSdkVersion更改为 26 时,我的应用程序仍然崩溃......

我已经测试了没有此代码的代码:“ 'com.google.android.gms:play-services-ads:17.1.1'”并且它可以运行。我确定这个代码是问题,但我不知道如何纠正它。

任何人都可以帮助解决我的问题吗?谢谢你。

标签: javaandroidadmobgoogle-play-services

解决方案


Admob - Select App - App Setting - App ID复制值App ID

现在添加这个(改变这个android:value="paste the App ID value you copy from your admob app"

<meta-data
            android:name="com.google.android.gms.ads.APPLICATION_ID"
            android:value="ca-app-pub-111100000000~1111111"/>

meta-dataAndroidManifest.xml

无需添加任何APPLICATION_ID内容android:name="com.google.android.gms.ads.APPLICATION_ID"

这会奏效!

看下图就清楚了

在此处输入图像描述


推荐阅读