web-dev-qa-db-ja.com

エラー:タイプcom.google.gms.googleservices.GoogleServicesPlugin $ GoogleServicesPluginConfigのオブジェクトの不明なプロパティ「config」を取得できませんでした

enter image description here

google Playサービスの依存関係をにアップグレードした後

    classpath 'com.google.gms:google-services:4.2.0'

    classpath 'com.google.gms:google-services:4.3.0'
8
Jaymin Bhadani

この問題は、One Signal Gradleプラグインとの競合が原因で発生しました。それがあなたの場合、それを バージョン0.12. に更新すると、これが修正されました。アプリのbuild.gradleで:

buildscript {
  dependencies {
     classpath gradle.plugin.com.onesignal:onesignal-gradle-plugin:0.12.3
  }
}
4
Tiago Ornelas

Android/app/build.gradleの最後:com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true

0
Riyasa Mansil