getBackgroundLimitsInfo static method

Map<String, String> getBackgroundLimitsInfo()

High-level guidance about OS background limits.

Implementation

static Map<String, String> getBackgroundLimitsInfo() {
  return {
    'android':
        'Doze and App Standby may restrict background work; OEMs can add '
            'aggressive task killers that require manual exemptions.',
    'ios': 'Background execution is limited; tasks may be suspended within '
        'minutes when not actively tracking location.',
  };
}