Hi, i am working on an flutter app that is configured differently for each customer, i need to change the sentry dsn at runtime.
Steps required:
- app starts
- app inits sentry with a master dsn common for all customers (call SentryFlutter.init())
- app loads some config file containing the customer allocated dsn (https://958eb73f9b4c43a88ffa3549…)
- configure sentry sdk to use this customer dsn.
So far i have tried Sentry.bindClient() but after the bind the captured messages lack lots of information such as tags, app version, device information and more.
Thanks.