derjohng
derjohng

Reputation: 877

How to set many "not contains" condition on Firebase RemoteConfig?

I try to set "App version" condition with not contains "2.0.2" and "2.1.0". However, I can not set multiple "App version" while I click "AND" button. enter image description here

Next, I try to use "regular expression" and always fail. However, I always fail. Even I try to set "all contains", still fail. enter image description here

How can I do for condition with not contains two strings?

Upvotes: 3

Views: 983

Answers (1)

Safa Alai
Safa Alai

Reputation: 1277

Just enter both strings separated by comma:

"App version does not contain 2.0.2,2.1.0"

(documented in https://firebase.google.com/docs/remote-config/parameters)

Upvotes: 4

Related Questions