问题
Firebase Remote Config activateFetched() is deprecated. What to use instead?
firebaseRemoteConfig.activateFetched();
回答1:
Use firebaseRemoteConfig.activate();
instead. See documentation https://firebase.google.com/docs/reference/android/com/google/firebase/remoteconfig/FirebaseRemoteConfig.html#activate()
回答2:
Use activate() instead.
firebaseRemoteConfig.activate();
I had to search for this. I hope it helps others.
来源:https://stackoverflow.com/questions/57494893/firebaseremoteconfig-activatefetched-is-deprecated-what-to-use-instead