So I have a MAUI app with a lifecycle config of the following
- Dev machine config
- Dev environment config (early preview)
- Staging (UAT) config
- Production (Live) config
Question: How do I configure the app as it switches between stages
How do I know the app is in e.g.
- Android internal testing and the config should point to the dev environment
- Android Open testing and the config should point to the staging environment
- Android Production and the config should point to the Production environment
- IOS internal testing and the config should point to the dev environment
- IOS Open testing and the config should point to the staging environment
- IOS Production and the config should point to the Production environment
Cheers all