Skip to content

Commit

Permalink
Support visionOS
Browse files Browse the repository at this point in the history
  • Loading branch information
noppefoxwolf committed Jul 7, 2024
1 parent 7c2129e commit d78bd5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import PackageDescription
let package = Package(
name: "CoreStore",
platforms: [
.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v7)
.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v7), .visionOS(.v1)
],
products: [
.library(name: "CoreStore", targets: ["CoreStore"])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
// SOFTWARE.
//

#if canImport(UIKit) && (os(iOS) || os(tvOS))
#if canImport(UIKit) && (os(iOS) || os(tvOS) || os(visionOS))

import UIKit
import CoreData
Expand Down
2 changes: 1 addition & 1 deletion Sources/DiffableDataSource.TableViewAdapter-UIKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
// SOFTWARE.
//

#if canImport(UIKit) && (os(iOS) || os(tvOS))
#if canImport(UIKit) && (os(iOS) || os(tvOS) || os(visionOS))

import UIKit
import CoreData
Expand Down

0 comments on commit d78bd5b

Please sign in to comment.