SpreadsheetView icon indicating copy to clipboard operation
SpreadsheetView copied to clipboard

Swift Package Manager Support

Open hajjD opened this issue 3 years ago • 4 comments

Can Swift Package Manager be added as an alternative to cocoapods/cathridge

hajjD avatar Dec 04 '20 21:12 hajjD

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 avatar Feb 28 '21 06:02 hartti

@hartti trying to push this forward with https://github.com/bannzai/SpreadsheetView/pull/276

jarrodparkes avatar Apr 06 '21 14:04 jarrodparkes

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

scriptprojectsdev avatar Jan 06 '23 23:01 scriptprojectsdev

I've begun maintaining the whole repository. if you'd like to have it kept up to date, use https://github.com/BTAProgrammers/SpreadsheetView

FadyFaheem avatar Jan 23 '23 11:01 FadyFaheem