React Native Firebase
    Preparing search index...

    An Interface representing settable config settings.

    The example below shows how to set a time limit to the length of time the request for remote config values

    await firebase.remoteConfig().setConfigSettings({
    fetchTimeMillis: 6000,
    });
    interface ConfigSettings {
        fetchTimeMillis?: number;
        minimumFetchIntervalMillis?: number;
    }
    Index

    Properties

    fetchTimeMillis?: number

    Indicates the default value in milliseconds to abandon a pending fetch request made to the Remote Config server. Defaults to 60000 (One minute).

    minimumFetchIntervalMillis?: number

    Indicates the default value in milliseconds to set for the minimum interval that needs to elapse before a fetch request can again be made to the Remote Config server. Defaults to 43200000 (Twelve hours).