Skip to content

Commit

Permalink
Fix SPM support and request to tag 1.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
4taras4 authored Aug 4, 2022
2 parents 6523131 + 77f0423 commit 01134ab
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ import PackageDescription

let package = Package(
name: "CountryCode",
platforms: [
.iOS(.v8)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
Expand All @@ -21,7 +24,10 @@ let package = Package(
.target(
name: "CountryCode",
dependencies: [],
path: "CountryPicker"),
path: "CountryPicker",
resources: [
.copy("Assets")]
),
.testTarget(
name: "CountryCodeTests",
dependencies: ["CountryCode"]),
Expand Down

0 comments on commit 01134ab

Please sign in to comment.