2019-04-30 10:24:12 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import { NativeModules } from 'react-native';
|
|
|
|
|
|
|
|
export * from './functions.any';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes all analytics related options from the given configuration, in case of a libre build.
|
|
|
|
*
|
|
|
|
* @param {*} config - The configuration which needs to be cleaned up.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
export function _cleanupConfig(config: Object) {
|
2019-10-11 09:46:57 +00:00
|
|
|
config.analytics.scriptURLs = [];
|
2019-04-30 10:24:12 +00:00
|
|
|
if (NativeModules.AppInfo.LIBRE_BUILD) {
|
|
|
|
delete config.analytics.amplitudeAPPKey;
|
|
|
|
delete config.analytics.googleAnalyticsTrackingId;
|
|
|
|
delete config.callStatsID;
|
|
|
|
delete config.callStatsSecret;
|
|
|
|
}
|
|
|
|
}
|