We are using the following code to initialize various Fabric Kits at startup:
Fabric.with(appContext, new Crashlytics(), new Answers());
If at runtime, I need to remove a particular kit due to configuration changes related to the data collection restrictions of the region where the App is deployed, I can issue another Fabric.with() call with just the Kits that are allowed.
How can I completely remove ALL of the Kits at runtime, after some had been previously configured?