Skip to content

Commit

Permalink
Merge pull request airbnb#937 from StatusQuo/master
Browse files Browse the repository at this point in the history
swift package.swift to work at least with iOS
  • Loading branch information
buba447 committed Jun 7, 2019
2 parents dc2213b + 4386517 commit ed31b9f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
// swift-tools-version:4.2
// swift-tools-version:5.0
import PackageDescription

let package = Package(
name: "Lottie",
platforms: [.iOS(.v12)],
// platforms: [.iOS("9.0"), .macOS("10.10"), tvOS("9.0"), .watchOS("2.0")],
products: [
.library(name: "Lottie", targets: ["Lottie"])
],
targets: [
.target(
name: "Lottie",
path: "lottie-swift/src"
path: "lottie-swift/src",
exclude: ["Public/MacOS"]
)
]
)

0 comments on commit ed31b9f

Please sign in to comment.