diff --git a/Package.swift b/Package.swift index e786004..9f06609 100644 --- a/Package.swift +++ b/Package.swift @@ -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( @@ -21,7 +24,10 @@ let package = Package( .target( name: "CountryCode", dependencies: [], - path: "CountryPicker"), + path: "CountryPicker", + resources: [ + .copy("Assets")] + ), .testTarget( name: "CountryCodeTests", dependencies: ["CountryCode"]),