を解決することはできませんAdMobの+のセットアップ中に不明なエラーが:Androidのメーカー、私はコードを入れたときに、私のbuild.gradeで記号「R」
apply plugin: 'com.google.gms.google-services'
エラーが言うように来る:
Error:(35, 0) Plugin with id 'com.google.gms.google-services' not found.
これはなぜですか?それは私のプロジェクト全体を台無しにする。ここに私のグラデルコードがあります:
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.3"
defaultConfig {
applicationId "com.apps.stephenshettler.laughsoundboard"
minSdkVersion 16
targetSdkVersion 24
versionCode 4
versionName "2.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services-ads:9.6.1'
compile 'com.google.firebase:firebase-ads:9.6.1'
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:design:24.2.1'
testCompile 'junit:junit:4.12'
compile 'com.google.android.gms:play-services-appindexing:9.6.1'
}
apply plugin: 'com.google.gms.google-services'
大変助けになりました!ありがとう!
これは正解である可能性が高いです。しかし、 'com.google.gms:google-services:3.0.0'は最新バージョンです。 – RedBrogdon