Michalsx
Michalsx

Reputation: 3621

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

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

firebaseRemoteConfig.activateFetched();

Upvotes: 19

Views: 8759

Answers (3)

Avneesh Agrawal
Avneesh Agrawal

Reputation: 944

Use This.

RemoteConfig.remoteConfig().activate(completion: nil)

Upvotes: 0

michaelitoh
michaelitoh

Reputation: 2340

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

Upvotes: 20

Michalsx
Michalsx

Reputation: 3621

Use activate() instead.

firebaseRemoteConfig.activate();

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

Upvotes: 9

Related Questions