SpreadsheetView
SpreadsheetView copied to clipboard
Swift Package Manager Support
Can Swift Package Manager be added as an alternative to cocoapods/cathridge
I tested a little around, by cloning the repository and trying to create a Package.swift file for it. The result of my trials is below. Just adding this file (note that the file contents might not be completely correct but it seems to work) and creating a new version should do it
Package.swift
// swift-tools-version:5.3 import PackageDescription
let package = Package( name: "SpreadsheetView", platforms: [ .iOS(.v9) ], products: [ .library( name: "SpreadsheetView", targets: ["SpreadsheetView"]), ], dependencies: [ ], targets: [ .target( name: "SpreadsheetView", dependencies: [], path: "Framework/Sources") ], swiftLanguageVersions: [.v5] )
@hartti trying to push this forward with https://github.com/bannzai/SpreadsheetView/pull/276
Not sure what the status of SPM support is. In the mean time I forked the repo and added the above Package.swift file and it works as of 01-06-2023. You can find it at https://github.com/scriptprojectsdev/SpreadsheetView
I've begun maintaining the whole repository. if you'd like to have it kept up to date, use https://github.com/BTAProgrammers/SpreadsheetView