Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

FirebaseRemoteConfig.activateFetched() is deprecated. What to use instead?

Firebase Remote Config activateFetched() is deprecated. What to use instead?

firebaseRemoteConfig.activateFetched();
like image 664
Michalsx Avatar asked Aug 14 '19 12:08

Michalsx


2 Answers

Use firebaseRemoteConfig.activate(); instead. See documentation https://firebase.google.com/docs/reference/android/com/google/firebase/remoteconfig/FirebaseRemoteConfig.html#activate()

like image 60
michaelitoh Avatar answered Oct 01 '22 20:10

michaelitoh


Use activate() instead.

firebaseRemoteConfig.activate();

I had to search for this. I hope it helps others.

like image 45
Michalsx Avatar answered Oct 01 '22 20:10

Michalsx