Reputation: 3621
Firebase Remote Config activateFetched() is deprecated. What to use instead?
firebaseRemoteConfig.activateFetched();
Upvotes: 19
Views: 8759
Reputation: 944
Use This.
RemoteConfig.remoteConfig().activate(completion: nil)
Upvotes: 0
Reputation: 2340
Use firebaseRemoteConfig.activate();
instead. See documentation https://firebase.google.com/docs/reference/android/com/google/firebase/remoteconfig/FirebaseRemoteConfig.html#activate()
Upvotes: 20
Reputation: 3621
Use activate() instead.
firebaseRemoteConfig.activate();
I had to search for this. I hope it helps others.
Upvotes: 9