I've tried to make an audience in Firebase Analytics, with "App Version" set to "contains 'debug'". The debug version of my app appends "-debug" on the end of the Version Name string.
When I run the app, though, while Firebase records data for my sessions, it does not record any for the "debug audience."
What I ultimately hope to get to is a world where I can use Remote Config, creating config items that I can use in testing, but I wouldn't have to worry about accidentally leaving config active in some test mode when I push the app live. Right now, my solution is to wrap all calls to apply Remote Config with "if (!BuildConfig.DEBUG)", but I'm sure to forget once, and push an app live with "isPremiumUser" set to true for all users, or something dumb like that :).
Is there a way to create an audience of developer builds, whether by version name, or any other method?
Thanks!
debug = true
on those users, so later on you can filter this audience and either include or leave out depending on what you are about to do. Here is a link too, in case you are not familiar with the concept: firebase.google.com/docs/analytics/android/… – Osithe