[Bugfix] Issue when building for watchOS platform (#14)
This PR contains the work done to fix an issue that occurred when building for *watchOS* platform, which was raised right after the release `v0.1.4`. To provide further details about he work done: - [x] filtered out the `CoordinatorTests` test cases and the `TestCoordinators` structs from the *watchOS* platform; - [x] updated some texts in the `README` file. Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Reviewed-on: #14
This commit was merged in pull request #14.
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#if canImport(UIKit)
|
||||
#if canImport(UIKit) && !os(watchOS)
|
||||
import Coordination
|
||||
import UIKit
|
||||
import XCTest
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#if canImport(UIKit)
|
||||
#if canImport(UIKit) && !os(watchOS)
|
||||
import Coordination
|
||||
import UIKit
|
||||
|
||||
|
||||
Reference in New Issue
Block a user