From 9f8a7b0a472a53c9025c1703f69d7cb8fba117a0 Mon Sep 17 00:00:00 2001 From: Enes Karaosman Date: Sun, 10 Jan 2021 12:12:26 +0300 Subject: [PATCH] [FIX] #121 Necessary imports added to build successfully (for SPM) --- Pod/Classes/GestureRecognizer+RxGesture.swift | 1 + Pod/Classes/View+RxGesture.swift | 1 + 2 files changed, 2 insertions(+) diff --git a/Pod/Classes/GestureRecognizer+RxGesture.swift b/Pod/Classes/GestureRecognizer+RxGesture.swift index 5693772..f541184 100644 --- a/Pod/Classes/GestureRecognizer+RxGesture.swift +++ b/Pod/Classes/GestureRecognizer+RxGesture.swift @@ -20,6 +20,7 @@ import RxSwift import RxCocoa +import struct CoreGraphics.CGPoint public typealias LocationInView = (RxGestureView) -> CGPoint diff --git a/Pod/Classes/View+RxGesture.swift b/Pod/Classes/View+RxGesture.swift index b245bb8..d6773c8 100644 --- a/Pod/Classes/View+RxGesture.swift +++ b/Pod/Classes/View+RxGesture.swift @@ -20,6 +20,7 @@ import RxSwift import RxCocoa +import Dispatch extension Reactive where Base: RxGestureView {