diff --git a/Example/Example/ObservableExampleApp.swift b/Example/Example/ObservableExampleApp.swift index 1b9f1536f..cf8265b81 100644 --- a/Example/Example/ObservableExampleApp.swift +++ b/Example/Example/ObservableExampleApp.swift @@ -9,7 +9,7 @@ import OpenObservation import OpenSwiftUI #else -import OpenObservation +import Observation import SwiftUI #endif diff --git a/Sources/COpenSwiftUI/Overlay/CoreVideo/DisplayLink.c b/Sources/COpenSwiftUI/Overlay/CoreVideo/DisplayLink.c index d2fb21b7f..9474e281f 100644 --- a/Sources/COpenSwiftUI/Overlay/CoreVideo/DisplayLink.c +++ b/Sources/COpenSwiftUI/Overlay/CoreVideo/DisplayLink.c @@ -227,7 +227,7 @@ DisplayLinkRef DisplayLinkCreate(CGDirectDisplayID displayID, DisplayLinkCallbac dispatch_queue_attr_t attr = dispatch_queue_attr_make_with_qos_class( DISPATCH_QUEUE_SERIAL, QOS_CLASS_USER_INTERACTIVE, 0 ); - link_queue = dispatch_queue_create("com.apple.SwiftUI.DisplayLink", attr); + link_queue = dispatch_queue_create("org.OpenSwiftUIProject.OpenSwiftUI.DisplayLink", attr); } manager = link_list; diff --git a/Sources/OpenSwiftUICore/View/Image/NamedImage.swift b/Sources/OpenSwiftUICore/View/Image/NamedImage.swift index 7c5d87392..6c75613f4 100644 --- a/Sources/OpenSwiftUICore/View/Image/NamedImage.swift +++ b/Sources/OpenSwiftUICore/View/Image/NamedImage.swift @@ -366,7 +366,7 @@ package enum NamedImage { if let (cat, retain) = NamedImage.sharedCache[bundle], retain { CGImageSetProperty( cgImage, - "com.apple.SwiftUI.ObjectToRetain" as CFString, + "org.OpenSwiftUIProject.OpenSwiftUI.ObjectToRetain" as CFString, Unmanaged.passUnretained(cat).toOpaque() ) }