0

これは私の build.gradle コードです Error:Execution failed for task ':app:processDebugGoogleServices'.

google-services プラグインのバージョンを更新して、バージョンの競合を修正してください (最新バージョンに関する情報は、 https://bintray.com/android/android-tools/com.google.gms.google-services/で入手できます) 。または、com.google.android.gms のバージョンを 9.0.0 に更新します。

私のbuild.gradleコードは

apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
defaultConfig {
    applicationId "com.example.pandey.nidhiiot"
    minSdkVersion 16
    targetSdkVersion 24
    versionCode 1
    versionName "1.0"
    multiDexEnabled true
    testInstrumentationRunner    "android.support.test.runner.AndroidJUnitRunner"
}

私の依存関係は「com.google.android.gms:play-services:10.0.1」をコンパイルしています

4

1 に答える 1