Android Gradleプラグイン3.2.0
から3.3.0-alpha13
、次のビルドエラーが表示されます。
> Task :app:fabricGenerateResourcesDebug FAILED
ERROR - Crashlytics Developer Tools error.
Java.lang.IllegalArgumentException: Crashlytics found an invalid API key: null.
Check the Crashlytics plugin to make sure that the application has been added successfully!
Contact [email protected] for assistance.
processDebugGoogleServices
タスクはfabricGenerateResourcesDebug
タスクの前に実行されていないようです。
バージョン4.1.0
Googleサービスプラグインと1.25.4
プラグインの。
これは、v4.1.0
プラグインおよびAGP 3.3アルファ版)との既知の非互換性です。回避策は、v4.0.2
プラグインのgoogle-services
にダウングレードすることです。詳細はこちらにあります: https://github.com/firebase/quickstart-Android/pull/661 。
google-services 4.2.0
も問題を修正します。
platforms/Android/build.gradle
classpath 'com.google.gms:google-services:4.1.0'
に
classpath 'com.google.gms:google-services:4.2.0'
問題を解決する
私の場合、google-services
の更新は問題を解決します
classpath 'com.google.gms:google-services:4.1.0'
に
classpath 'com.google.gms:google-services:4.3.2'