嗨,我正在尝试在Android的Firebase中使用远程配置,但是在使其正常工作时遇到了问题。我正在使用以下版本:
implementation 'com.google.firebase:firebase-appindexing:17.1.0'
implementation 'com.google.firebase:firebase-core:16.0.6'
implementation 'com.google.firebase:firebase-config:16.1.3
但是,当我尝试获取错误的远程配置时,它崩溃了:
FirebaseRemoteConfig: IPC failure: 10:NullPointerException: Attempt to invoke virtual method 'java.lang.String com.google.firebase.iid.FirebaseInstanceId.getId()' on a null object reference
我认为这意味着FirebaseInstanceId为null。我正在使用以下方法初始化Firebase:
FirebaseApp.initializeApp(Context)
以前使用11.8.0可以运行,但是现在该版本甚至无法运行。我认为其他地方已经发生了其他变化,导致了这种情况,但是我对可能的结果已经没有足够的想法了。