iOS App Groups: Shared Data Between App and Extensions

Imagine your iOS widget shows yesterday's data because it can't see updates from the main app. Or a Siri Intent throws 'No access to settings.' This isn't a bug—it's iOS sandbox isolation. App Groups is the only legitimate way to share storage between an app and its extensions. We've configured it f

Development and support of all types of mobile applications:

Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1All 1734 services
iOS App Groups: Shared Data Between App and Extensions
Simple
~1 day

Our competencies:

Frequently Asked Questions

Latest works

  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    898
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    784
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1219
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    1081
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    1004
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    600

Imagine your iOS widget shows yesterday's data because it can't see updates from the main app. Or a Siri Intent throws 'No access to settings.' This isn't a bug—it's iOS sandbox isolation. App Groups is the only legitimate way to share storage between an app and its extensions. We've configured it for 40+ projects and know every pitfall. We guarantee correct synchronization and provide thorough documentation. Save up to 40% on sync debugging. In 90% of cases, the issue resolves in one day. Get a consultation on App Groups setup for your project.

Problems We Solve

  • Different group IDs across targets – each extension must use the exact same App Group identifier. A typo or mismatch silently breaks sharing.
  • Missing synchronize() callUserDefaults caches writes; without explicit flush, the extension may read stale data.
  • Wrong file container path – using containerURL incorrectly or pointing to the app's own sandbox instead of the shared container.
  • Not calling WidgetCenter.reloadAllTimelines() – widgets rely on this method to refresh; without it, they wait up to 60 minutes.
  • Provisioning profile misconfiguration – an entitlement that's not in the profile leads to a runtime crash.

How We Do It (Case Study)

On a recent project for a food delivery app, the client had 8 targets (main app, widget, Siri Intent, and 5 custom keyboard extensions) that needed to share order status data. Initially, sync took 8 seconds and often failed. Our engineers:

  • Audited existing provisioning profiles and entitlements.
  • Consolidated all targets under one App Group identifier.
  • Migrated from per-target UserDefaults to a shared Core Data store.
  • Integrated WidgetCenter.reloadAllTimelines() and INInteraction donation for Siri.

Result: Sync time dropped to 1.2 seconds. Data now survives app termination and device restarts. The client reported zero sync failures in production over 3 months.

Our toolkit: Xcode 15, Swift 5.9, Core Data with NSPersistentCloudKitContainer for optional iCloud sync, and automated provisioning via Fastlane. We also use XCTest for unit tests and XCUITest for UI validation of widget updates.

Process

  1. Data Collection – we review your project structure, identify all targets that need data access.
  2. Audit & Analysis – check existing entitlements, provisioning profiles, and code signing. Identify issues before they cause runtime errors.
  3. Design – choose the optimal storage method for each scenario: UserDefaults for simple flags, file container for JSON/Plist, Core Data for complex relationships.
  4. Estimation – provide a fixed price after analysis (no hidden fees).
  5. Development – configure App Groups, implement shared storage, write clean Swift code with error handling.
  6. Testing – run 20+ scenarios: background refresh, process termination, device reboot, simultaneous read/write from multiple targets.
  7. Launch – prepare App Store submission with correct entitlements. Deliver full documentation.

What’s Included in the Work

  • Audit of existing App Groups and provisioning profiles.
  • Code signing configuration for all targets (generate certificates and profiles if needed).
  • Implementation of shared storage: UserDefaults, file container, or Core Data as required.
  • Integration with WidgetKit, Siri Intents, Share Extensions, or any other extension type.
  • Code writing and documentation (you get ready-to-use modules).
  • Testing of synchronization under all common conditions.
  • Documentation for maintenance and support.
Typical Shared Container Architecture
  • Main app writes data to shared UserDefaults and/or file container.
  • Extension (widget, Siri Intent) reads from the same container.
  • For Core Data: all targets use one NSPersistentStoreCoordinator with URL in the container.
  • After writing in main app, call WidgetCenter.reloadAllTimelines() for widgets and INInteraction.donate for Siri.

Comparison of Approaches for Different Extension Types

Extension Type Recommended Storage Performance
Widget (WidgetKit) UserDefaults or files (JSON) High
Siri Intent UserDefaults or Core Data Medium
Share Extension File container (images, documents) Medium
Custom Keyboard UserDefaults Low (limited memory)

Timelines

  • Simple two-target setup (app + one extension) with UserDefaults and file container: from 1 business day.
  • Complex setup with Core Data and multiple extensions: up to 3 business days.

Cost is calculated individually after project assessment. Contact us for an audit – we'll evaluate which extensions need shared access and propose the optimal solution.

Typical Mistakes Checklist

  • App Group identifier mismatch between targets.
  • synchronize() not called before extension exits.
  • WidgetCenter.reloadAllTimelines() not invoked after data update.
  • File container path built incorrectly (e.g., using NSSearchPathForDirectoriesInDomains instead of containerURL).
  • Core Data store not placed in the shared container.
  • Provisioning profile missing App Groups entitlement.
  • Multiple targets with same group but different code signing teams.

These are real issues we've encountered in 40+ projects. Our process proactively checks and fixes them.