Skip to content
This repository was archived by the owner on Apr 30, 2025. It is now read-only.

Fix SPM manifest to build on Any iOS Device Xcode 13.3 #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
// swift-tools-version:4.0
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "ShowcaseKit",
platforms: [
.iOS(.v13)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we could allow all the way down do iOS 11.

Suggested change
.iOS(.v13)
.iOS(.v11)

],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
Expand Down