fix: change the Apple group ID to something that works, ie group.app.timesafari.share

This commit is contained in:
2025-12-18 20:26:02 -07:00
parent 386b7604eb
commit bf8694fc75
4 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,7 @@
<dict>
<key>com.apple.security.application-groups</key>
<array>
<string>group.app.timesafari</string>
<string>group.app.timesafari.share</string>
</array>
</dict>
</plist>

View File

@@ -10,7 +10,7 @@
import Foundation
public class SharedImageUtility {
private static let appGroupIdentifier = "group.app.timesafari"
private static let appGroupIdentifier = "group.app.timesafari.share"
private static let sharedPhotoFileNameKey = "sharedPhotoFileName"
private static let sharedPhotoFilePathKey = "sharedPhotoFilePath"
private static let sharedPhotoReadyKey = "sharedPhotoReady"

View File

@@ -10,7 +10,7 @@ import UniformTypeIdentifiers
class ShareViewController: UIViewController {
private let appGroupIdentifier = "group.app.timesafari"
private let appGroupIdentifier = "group.app.timesafari.share"
private let sharedPhotoFileNameKey = "sharedPhotoFileName"
private let sharedPhotoFilePathKey = "sharedPhotoFilePath"
private let sharedImageFileName = "shared-image"

View File

@@ -4,7 +4,7 @@
<dict>
<key>com.apple.security.application-groups</key>
<array>
<string>group.app.timesafari</string>
<string>group.app.timesafari.share</string>
</array>
</dict>
</plist>