Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add app-configuration App Group (#3295)
Task/Issue URL: https://app.asana.com/0/72649045549333/1208165258583208/f Tech Design URL: CC: **Description**: This PR adds the `app-configuration` App Group. <!-- If at any point it isn't actively being worked on/ready for review/otherwise moving forward strongly consider closing it (or not opening it in the first place). If you decide not to close it, use Draft PR while work is still in progress or use `DO NOT MERGE` label to clarify the PRs state and comment with more information. --> **Steps to test this PR**: 1. You will likely need to refresh your provisioning profiles locally first 2. Next, make sure that the app builds and runs as expected 3. Now we need to test that the app group is working, you can use the following code to do so: ``` let fileURL = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: "\(Global.groupIdPrefix).app-configuration")!.appendingPathComponent("example.txt") do { let data = "hello, world".data(using: .utf8)! try data.write(to: fileURL) print("File written to: \(fileURL.path)") } catch { print("Failed to write to file: \(error.localizedDescription)") } ``` <!-- Before submitting a PR, please ensure you have tested the combinations you expect the reviewer to test, then delete configurations you *know* do not need explicit testing. Using a simulator where a physical device is unavailable is acceptable. --> **Definition of Done (Internal Only)**: * [ ] Does this PR satisfy our [Definition of Done](https://app.asana.com/0/1202500774821704/1207634633537039/f)? **Copy Testing**: * [ ] Use of correct apostrophes in new copy, ie `’` rather than `'` **Orientation Testing**: * [ ] Portrait * [ ] Landscape **Device Testing**: * [ ] iPhone SE (1st Gen) * [ ] iPhone 8 * [ ] iPhone X * [ ] iPhone 14 Pro * [ ] iPad **OS Testing**: * [ ] iOS 15 * [ ] iOS 16 * [ ] iOS 17 **Theme Testing**: * [ ] Light theme * [ ] Dark theme --- ###### Internal references: [Software Engineering Expectations](https://app.asana.com/0/59792373528535/199064865822552) [Technical Design Template](https://app.asana.com/0/59792373528535/184709971311943)
- Loading branch information