I have created an application which uses "UserDefaults" for storing the data. I am using the App Groups capability to share the data between the host app and extension. Where can I see the data stored in it?
When using the default (UserDefaults.standard) UserDefaults I am able to see the data stored under "Library -> Preferences -> appbundlename.plist.
The application is displaying the data even when I kill it from background.(data is persisting)
let sharedDefaults = UserDefaults(suiteName: ListManager.GroupId)