You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixing the exclude path in Package.swift#126 actually broke the build on macOS.
Since the extension in Pod/Classes/OSX/NSGestureRecognizer+Rx is not created, we end up getting an error in Pod/Classes/View+RxGesture.swift
.../RxGesture/Pod/Classes/View+RxGesture.swift:98:38: value of type 'Reactive' (aka 'Reactive') has no dynamic member 'event' using key path from root type 'RxGestureRecognizer' (aka 'NSGestureRecognizer')
We should probably remove the exclude config since we already filter out those files using #if canImport(AppKit) and there's currently no way of specifying supported platforms per target.
The text was updated successfully, but these errors were encountered:
Fixing the exclude path in
Package.swift
#126 actually broke the build on macOS.Since the extension in
Pod/Classes/OSX/NSGestureRecognizer+Rx
is not created, we end up getting an error inPod/Classes/View+RxGesture.swift
.../RxGesture/Pod/Classes/View+RxGesture.swift:98:38: value of type 'Reactive' (aka 'Reactive') has no dynamic member 'event' using key path from root type 'RxGestureRecognizer' (aka 'NSGestureRecognizer')
We should probably remove the
exclude
config since we already filter out those files using#if canImport(AppKit)
and there's currently no way of specifying supported platforms per target.The text was updated successfully, but these errors were encountered: