We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc4390c commit a002338Copy full SHA for a002338
1 file changed
Sources/SHFirestoreService/FirestoreService.swift
@@ -5,12 +5,16 @@
5
// Created by 양승현 on 4/19/24.
6
//
7
8
-#if os(iOS)
9
-import Combine
10
import Foundation
11
import FirebaseFirestore
12
import FirebaseFirestoreCombineSwift
13
+#if os(iOS) && canImport(Combine) && swift(>=5.0)
+import Combine
14
+
15
+@available(swift 5.0)
16
+@available(iOS 13.0, *)
17
18
public final class FirestoreService {
19
// MARK: - Dependencies
20
private let backgroundQueue: DispatchQueue
0 commit comments