LockedCameraCaptureExtension and Sharing User Preferences

I have the main app that saves preferences to UserDefaults.standard. So I have this one preference that the user is able to toggle - isRawOn

UserDefaults.standard.set(self.isRawOn, forKey: "isRawOn")

Now, I have LockedCameraCaptureExtension which is required know if that above setting on or off during launch. Also if it's toggled within the extension, the main app should know about it on the next launch.

The main app and the extension runs on separate containers and the preferences are not shared due to privacy reasons.

Apple mentions of using appContext of CameraCaptureIntent, but not sure how above scenario is possible through that....unless I am missing something.

Apple Reference

What I have for CameraCaptureIntent:

@available(iOS 18, *)
struct LaunchMyAppControlIntent: CameraCaptureIntent {
    
    typealias AppContext = MyAppContext
    static let title: LocalizedStringResource = "LaunchMyAppControlIntent"
    static let description = IntentDescription("Capture photos with MyApp.")
    
    @MainActor
    func perform() async throws -> some IntentResult {
        .result()
    }
}
LockedCameraCaptureExtension and Sharing User Preferences
 
 
Q