Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remote config in Flutter app throws exception on fetch

I have a Flutter app and I am using remote config to retrieve some information, but the code throws an exception when fetching data.

This is my method for setting up remote config.

Future<RemoteConfig> setupRemoteConfig() async {
  final RemoteConfig remoteConfig = await RemoteConfig.instance;
  // Enable developer mode to relax fetch throttling
  remoteConfig.setConfigSettings(RemoteConfigSettings(debugMode: true));
  remoteConfig.setDefaults(<String, dynamic>{
    'categories': "food,drink",
  });
  await remoteConfig.fetch(expiration: const Duration(hours: 5));
  await remoteConfig.activateFetched();
  return remoteConfig;
}

This code throws the following exception:

Exception: Unable to fetch remote config

and in my console it says:

W/FirebaseRemoteConfig(10456): IPC failure: 6503:NOT_AVAILABLE

How can I fix this?

like image 308
dshukertjr Avatar asked Oct 25 '18 07:10

dshukertjr


1 Answers

Wrap your fetch() and activateFetched() api calls with a Try Catch

try {
    // Using default duration to force fetching from remote server.
    await remoteConfig.fetch(expiration: const Duration(seconds: 0));
    await remoteConfig.activateFetched();
  } on FetchThrottledException catch (exception) {
    // Fetch throttled.
    print(exception);
  } catch (exception) {
    print(
        'Unable to fetch remote config. Cached or default values will be '
        'used');
  }

See official example here: https://github.com/flutter/plugins/blob/master/packages/firebase_remote_config/example/lib/main.dart

like image 86
nemoryoliver Avatar answered Nov 18 '22 19:11

nemoryoliver